Jupyter Ubuntu18
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!