Jupyter Ubuntu18

March 02, 2018 | 0 Minute Read

Installing Jupyter Notebook Ubuntu 18 64 bit

Jupyter is becoming really popular for its inline interpretetions as we code. Lets get started with jupyter in ubuntu 18.

apt-get -y install ipython ipython-notebook
sudo apt-get -y install ipython ipython-notebook
sudo pip install jupyter

#lets start a notebook session on a directory
cd /practice/python
#http://localhost:8888/tree
jupyter notebook

Enjoy!