Skip to content

Instantly share code, notes, and snippets.

@sidward35
Created August 12, 2021 04:58
Show Gist options
  • Save sidward35/99ca3365c06116130c7509131e971511 to your computer and use it in GitHub Desktop.
Save sidward35/99ca3365c06116130c7509131e971511 to your computer and use it in GitHub Desktop.
Script to setup a Jupyter server with Python3 on Debian 10
#!/bin/sh
sudo apt update
sudo apt install python3-pip python3-dev
sudo pip3 install --upgrade pip
pip install jupyter
jupyter notebook password
#sudo su
jupyter notebook --ip=0.0.0.0 --port=80 --allow-root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment