Skip to content

Instantly share code, notes, and snippets.

@giljr
Created May 26, 2023 21:45
Show Gist options
  • Save giljr/80fb05f2eaced449cc818b7ea982371c to your computer and use it in GitHub Desktop.
Save giljr/80fb05f2eaced449cc818b7ea982371c to your computer and use it in GitHub Desktop.
JUPYTER NOTEBOOK ON Ubuntu
JUPYTER NOTEBOOK - Installation UBUNTU jupyter notebook:
https://www.digitalocean.com/community/tutorials/how-to-set-up-jupyter-notebook-with-python-3-on-ubuntu-18-04
sudo apt update
sudo apt install python3-pip python3-dev
sudo -H pip3 install --upgrade pip
sudo -H pip3 install virtualenv
mkdir ~/my_project_dir
cd ~/my_project_dir
virtualenv my_project_env
source my_project_env/bin/activate
pip install jupyter
jupyter notebook
@giljr
Copy link
Author

giljr commented May 26, 2023

How to install jupyter Notebook on Ubuntu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment