There was an error while loading. Please reload this page.
Assumptions:
Now follow these steps (for python3.7 that we use):
sudo apt-get install python3.7-venv
python3.7 -m venv env
(This will create the env/ directory.)
screen // from this point we work in a dedicated screen for a long-running process. source env/bin/activate
(Windows: source env/Scripts/activate.bat // use Git for Windows SHELL).
source env/Scripts/activate.bat
pip install -r requirements.txt
python app.py // if PermissionDenied see notes
Notes:
sudo env/bin/python app.py
sudo python app.py