17 lines
255 B
Markdown
17 lines
255 B
Markdown
# Computer Networks practicum 2021
|
|
|
|
## Setup
|
|
|
|
### Create the virtual environment
|
|
```shell
|
|
virtualenv venv
|
|
```
|
|
### Activate the virtual environment
|
|
```shell
|
|
source venv/bin/activate
|
|
```
|
|
### Install requirements
|
|
```shell
|
|
pip install -r requirements.txt
|
|
```
|