JupyterHub setup on centos

curl -O http://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh
chmod u+x Anaconda3-4.0.0-Linux-x86_64.sh
./Anaconda3-4.0.0-Linux-x86_64.sh -b -p /opt/anaconda3
export PATH=/opt/anaconda3/bin:$PATH
curl –silent –location https://rpm.nodesource.com/setup_4.x | bash –
yum install nodejs -y
npm install -g configurable-http-proxy
pip install jupyterhub
jupyterhub –generate-config
openssl req \
-newkey rsa:2048 -nodes -keyout domain.key \
-x509 -days 365 -out domain.crt
jupyterhub -f jupyterhub_config.py

Source: JupyterHub setup on centos · GitHub

JupyterHub setup on centos was last modified: April 28th, 2020 by Jovan Stosic

Leave a Reply