# LoRaWAN-sim Write short project desctiption. ## Installation Please follow this short guide to install the project on your local setup. Python virtual environments are used to manage dependencies without impacting your other projects. After cloning the project and moving to its folder : 1. Fetch virtualenv via pip if it is not already installed. ``` pip install virtualenv ``` 2. Create a virtualenv `venv` using python 3 in the project folder. ``` virtualenv -p /usr/bin/python3 venv ``` 3. Activate `venv`. ``` source venv/bin/activate ``` 4. Install all requirements in `venv`. ``` pip install -r requirements.txt ``` ## Usage A word about launching the scripts. ## License To be determined later