This file contains hidden or 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
#!/bin/bash | |
echo "Updating system packages..." | |
dnf -y update | |
echo "Install JupyterHub and Libraries..." | |
dnf install -y python3-pip npm | |
npm install -g configurable-http-proxy | |
pip install jupyterhub jupyterlab notebook |