In this project, we are using python3.8
. First you have to create a virutal environment. Navigate to the root of this project and create one.
You might need to start your IDE as Administrator for this to work correctly
py -m venv env
After it is created, activate the virtual environment
.\env\Scripts\activate
Now install all packages needed.
pip install -r Organisation/requirements.txt
Keep in mind to update requirements.txt
when adding dependencies. To get a list of all current dependencies run:
pip freeze
To exit use this command:
deactivate
python3 -m venv env
After it is created, activate the virtual environment
source env/bin/activate
Now install all packages needed.
pip install -r Organisation/requirements.txt
Keep in mind to update requirements.txt
when adding dependencies. To get a list of all current dependencies run:
pip freeze
To exit use this command:
deactivate