Getting Started
A guide to installing additional packages in the provided notebooks.
To install additional packages in Python notebooks you can use pip. You can install packages globally using 'pip install ...', however these installs will not persist across notebook restarts. If you wish to install a package persistently, you must install it to your user directory with 'pip install --user ...'.
pip install <package> # will not persist
pip install --user <package> # will persist