Saturday, May 16, 2020

How To install Jupyter Notebook with Python 3 Pip on Ubuntu 20.04 LTS

 Video Tutorial -https://youtu.be/PqHHf6sWyAk

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Jupyter Notebook is an open source and interactive web app that you can use to create documents that contain live code, equations, visualizations, and explanatory text. Jupyter Notebook supports more than 40 programming languages.
Offcial Website -https://jupyter.org/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Testing Environment Setup- Ubuntu 20.04 LTS (focal fossa)  
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install -y build-essential net-tools curl git software-properties-common python3-pip python3-dev
python3 --version ; pip3 --version

sudo -H pip3 install --upgrade pip
sudo -H pip3 install virtualenv
mkdir ~/new_project_dir ; cd ~/new_project_dir
virtualenv new_project_env
source new_project_env/bin/activate
pip install jupyter
jupyter notebook --help-all
jupyter notebook password
jupyter notebook
jupyter notebook --allow-root
jupyter notebook --ip=' *'
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment