jupyterhub: command not found

Viewed 4232

I am trying to run the jupyterhub locally on Ubuntu 16.04; however, I cannot seem to run the jupyterhub command on the terminal, and I get the command not found error. I have installed jupyterhub by running the following commands:

sudo npm install -g configurable-http-proxy
pip3 install jupyterhub    
pip3 install --upgrade notebook

All of the above packages install successfully. My PATH variable in /etc/environment has been set as follows:

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/root/bin"
2 Answers

You need to start a Jupyter service, if you create environments with anaconda you can use them later inside the jupyter as kernels, so you can have a variety of library environments as you like.

There are also other functions to give resource guarantee or limits, or initial folders for your hub.

You can edit all this in your jupyterhub_config.py file.

I leave you here my github with a complete guide for the configuration and installation.

Github/Jupyter

Related