Created
May 26, 2023 21:45
-
-
Save giljr/80fb05f2eaced449cc818b7ea982371c to your computer and use it in GitHub Desktop.
JUPYTER NOTEBOOK ON Ubuntu
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to install jupyter Notebook on Ubuntu