- Ensure python 3 is installed
https://www.python.org/
- Open a terminal in the ROC-Deep-Dive directory (Git bash on Windows or Terminal on Mac) and type the following command.
python -m venv .env
- Activate the virtual environment
. .env/Scripts/activate
- Ensure the virtual environment is activated, you should see
.env
at the start of the terminal prompt.
pip install -r requirements.txt
- This will install the requirements to the virtual environment.