Created
August 12, 2021 04:58
-
-
Save sidward35/99ca3365c06116130c7509131e971511 to your computer and use it in GitHub Desktop.
Script to setup a Jupyter server with Python3 on Debian 10
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
#!/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