There was an error while loading. Please reload this page.
Follow the instructions here: https://brew.sh/.
Open Terminal.app and run brew install python.
brew install python
In Terminal.app, run mkdir -p ~/code/partridge-workspace. Then change into that directory: cd ~/code/partridge-workspace.
mkdir -p ~/code/partridge-workspace
cd ~/code/partridge-workspace
virtualenv
From your partridge workspace, run python3 -m venv partridge-venv. This will setup a sandbox for you to install python packages.
python3 -m venv partridge-venv
You'll need to "activate" the virtualenv for each Terminal.app window. The command to activate it is source partridge-venv/bin/activate.
source partridge-venv/bin/activate
Once your virtualenv is activated, install packages by running pip install partridge jupyter. This command will install partridge and Jupyter.
pip install partridge jupyter
Run jupyter-notebook from your workspace.
jupyter-notebook