Skip to content

Install Jupyterhub On Raspberry Pi

Hazarre edited this page Jun 19, 2019 · 4 revisions

Install jupyter notebook

Run the two commands

pip3 install --upgrade pip pip3 install jupyter

Reference:

https://jupyter.readthedocs.io/en/latest/install.html

Error References:

  1. https://stackoverflow.com/questions/35313876/after-installing-with-pip-jupyter-command-not-found/38257349
  2. https://stackoverflow.com/questions/37495375/python-pip-install-throws-typeerror-unsupported-operand-types-for-retry

Install jupyterhub

Run the commands

sudo apt-get install npm nodejs-legacy
python3 -m pip install jupyterhub
npm install -g configurable-http-proxy
python3 -m pip install notebook  # needed if running the notebook servers locally

Test Installation with commands

jupyterhub -h
configurable-http-proxy -h

Run notebook by command: export PATH=$PATH:~/.local/bin

The login username/password is pi/raspberry

Reference:

https://jupyterhub.readthedocs.io/en/stable/quickstart.html

Clone this wiki locally