Based on jupyterhub's readme, we need to install jupyterhub and NodeJS.
Create a service via systemd to make things more permanent.
| #!/bin/sh | |
| 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 |
Based on jupyterhub's readme, we need to install jupyterhub and NodeJS.
Create a service via systemd to make things more permanent.
@johnrc. Thanks for taking the time to shade some light on this, and correct. I found the conda part being strait forward to implemented, The painful part was JupyterHub with TLS. So I end up going with The JupyterHub Littliest distribution via PIP as described on this guide> https://tljh.jupyter.org/en/latest/install/amazon.html. Thanks.
Cheers
Alf