How to install and run Juypter/Ipython Notebook in Ubuntu/Debian/Linux Mint

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

Read more »

Comments

Popular posts from this blog

How to Install Antlr4 in Ubuntu/Linux

How to install python-gst (pygst) in ubuntu 16.04

How to make a gui Calculator in Python using Tkinter