- Clone repo
- Execute the following to create and activate your virtual environment:
# Windows computers
mkdir .venv
python -m venv .venv
.venv\Scripts\activate
# Macbook computers
python -m venv --prompt .venv .venv
source .venv/bin/activate
- Install package dependencies:
pip install -r requirements.txt
- If you need to update/over-write the requirements file:
pip freeze > requirements.txt
Please do not push the data (csv) to this repository. Coursera asked us to keep this data internal and I will have to delete the repo if data is pushed. Of note, I added the file to the .gitignore so feel free to add to your directory to run the code from.