Created
June 17, 2019 21:01
-
-
Save mikbuch/26c152c118caaa79ba13839f05cf8954 to your computer and use it in GitHub Desktop.
Packages that are required in order to run JupyterHub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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