Skip to content
Alessandro Gubitosi edited this page Oct 24, 2018 · 10 revisions

Installation

The following guide is for a Linux/Debian environment.

Update the system
$ sudo apt-get update

Install Python
$ sudo apt-get -y install python2.7 python-pip python-dev

Check Python version

$ python --version
# Python 2.7.15

Install IPython
$ sudo apt-get -y install ipython ipython-notebook

Upgrade pip $ sudo pip install --upgrade pip

And check PIP version

$ pip --version
# pip 18.1 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)

Install Jupyter
$ sudo pip install jupyter

Clone this repository and place in the notebook dir.
Now you can launch Jupyter Notebook:
$ jupyter notebook

If everything goes well, you'll see an output like this: image

Open http://localhost:8888 and you are able to work with the notebook

Clone this wiki locally