- Install Python virtualenv
$ pip install virtualenv
- Create a new virtual env inside the doc/speedup_analysis folder
$ cd doc/speedup_analysis
$ python3 -m venv ./venv
- Install Python dependencies
# activate virtual env
$ source venv/bin/activate
# first upgrade pip
(venv) $ pip install --upgrade pip
(venv) $ pip install --upgrade -r requirements.txt
# deactivate virtual env
$ deactivate
- Activate virtualenv and run Jupiter Notebook
$ source venv/bin/activate
(venv) $ jupyter notebook .
A new page on your browser should open with Jupyter running.