To run any of the notebooks in /src on a local machine, follow these steps:
- Clone this repository and
cdinto the resulting directory. - Create a virtual environment by running
python3 -m venv venv. - Activate the virtual environment. If you are using Linux or MacOS, run
source venv/bin/activate. If you are using Windows, runvenv\Scripts\activate. - Install all dependencies by running
pip install -r requirements.txt. - You may now open JupyterLab or view the notebooks in VS Code. Make sure the
venvkernel is selected.