Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 409 Bytes

SETUP.md

File metadata and controls

33 lines (22 loc) · 409 Bytes

Setup a Virtual Environment

Open the terminal/powershell and navigate to the root of this project folder.

Linux / MacOS

python3 -m venv venv

Activate the environment

source venv/bin/activate

Windows

python -m venv venv

Activate the environment

.\venv\Scripts\activate

Install Requirements

pip install -r requirements.txt