Initial commit

This commit is contained in:
2021-03-13 13:13:36 +01:00
commit e383a73425
6 changed files with 257 additions and 0 deletions

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
# 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
```