Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 606 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 606 Bytes

ROC-Deep-Dive

Setup Instructions

Install Python 3

  • Ensure python 3 is installed https://www.python.org/

Set up a Virtual Environment

  • 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

Install requirements

  • 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.