Skip to content

Instantly share code, notes, and snippets.

@pluto-atom-4
Last active February 2, 2020 20:55
Show Gist options
  • Save pluto-atom-4/a6909df36ecddb3a2508d3f61f382003 to your computer and use it in GitHub Desktop.
Save pluto-atom-4/a6909df36ecddb3a2508d3f61f382003 to your computer and use it in GitHub Desktop.

Jupyter Notebook notes

ssh -L 8888:localhost:8888 your_server_username@your_server_ip
#!/bin/usr/bash
# jupyter notebook notes
# prerequisites
#sudo apt update
#sudo apt install curl
sudo apt update
sudo apt install python3-pip python3-dev
sudo -H pip3 install --upgrade pip
sudo -H pip3 install virtualenv
mkdir ~/myprojectdir
cd ~/myprojectdir
virtualenv myprojectenv
source myprojectenv/bin/activate
pip install jupyter
jupyter notebook
Display the source blob
Display the rendered blob
Raw
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment