Skip to content

Instantly share code, notes, and snippets.

@mikbuch
Created June 17, 2019 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikbuch/26c152c118caaa79ba13839f05cf8954 to your computer and use it in GitHub Desktop.
Save mikbuch/26c152c118caaa79ba13839f05cf8954 to your computer and use it in GitHub Desktop.
Packages that are required in order to run JupyterHub
# Standard system upgrade:
sudo apt-get update
sudo apt-get upgrade -y
# Nodejs installation on debian (source (here)[https://tecadmin.net/install-laatest-nodejs-npm-on-debian/]):
sudo apt-get install curl software-properties-common
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
sudo apt-get install -y nodejs nodejs-legacy
# Installing the Jupyter itself:
sudo apt-get install -y python3-pip
sudo python3 -m pip install jupyterhub
sudo npm install -g configurable-http-proxy
sudo python3 -m pip install notebook
# To test the installation run:
# jupyterhub -h
# configurable-http-proxy -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment