Jupyter is a an opensource webapp that allows you to make documents containing live code which can be compiled within the Jupyter notebook itself. It supports over 40 programming languages like python, Ruby…
Earlier Jupyter was knows as Ipython Notebook.
It is widely used by the scientific community and teachers.
You can also run online Jupyter without installing it from http://try.jupyter.org
Installation:
you can install Jupyter via conda or pip.
1. Using Anaconda
First, make sure Anaconda is installed.
conda install jupyter
2. Using Pip or pip3
First, make sure you have pip or pip3 installed. (sudo apt-get install python-pip)
pip install jupyter
or
pip3 install jupyter
Running Jupyter Notebook
Enter this command and jupyter will automatically open up in your default browser.
jupyter notebook
the default address is http://127.0.0.1:8888
get more infomation
jupyter notebook --help
Installing Kernals
Installing Jupyter automatically installs the python kernal for installing other programming language kernals. refer this link => https://github.com/ipython/ipython/wiki/IPython-kernels-for-other-languages
Thanks for this guide, first one that actually worked for me!