TEAM MERGED AND MOVED TO https://github.com/MrTanoshii/PyWeek-34
[SHOW/HIDE] Python venv setup
[SHOW/HIDE] Windows Instructions
cd GITHUB_REPO_ROOT_DIR
python -m venv venv
cd GITHUB_REPO_ROOT_DIR
.\venv\Scripts\activate
Note: Your terminal will have (venv)
prefixed to your current path.
deactivate
[SHOW/HIDE] Linux Instructions
shell
cd GITHUB_REPO_ROOT_DIR
python3 -m venv venv
cd GITHUB_REPO_ROOT_DIR
source venv\bin\activate
Note: Your terminal will have (venv)
prefixed to your current path.
deactivate
With venv activated, Windows pip install -r requirements.txt
Linux pip3 install -r requirements.txt