git clone https://github.com/iterative/course-ds-base.git
cd course-ds-base
Create virtual environment named .venv
(you may use other name)
python3 -m venv .venv
echo "export PYTHONPATH=$PWD" >> .venv/bin/activate
source .venv/bin/activate
Install python libraries
pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
Add Virtual Environment to Jupyter Notebook
python -m ipykernel install --user --name=.venv
jupyter notebook