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 venvcd GITHUB_REPO_ROOT_DIR
.\venv\Scripts\activateNote: 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\activateNote: Your terminal will have (venv) prefixed to your current path.
deactivateWith venv activated, Windows pip install -r requirements.txt Linux pip3 install -r requirements.txt