https://www.continuum.io/downloads
$ sudo apt-get update
$ sudo apt-get -y install python2.7 python-pip python-dev
$ python --version
$ pip --version
$ sudo apt-get -y install ipython ipython-notebook
$ sudo -H pip install jupyter
"You are using pip version 8.1.1, however version 8.1.2 is available."
$ sudo -H pip install --upgrade pip
$ sudo -H pip install jupyter
====
Download Anaconda. They recommend downloading Anaconda’s latest Python 3 version (currently Python 3.5).
Install the version of Anaconda which you downloaded, following the instructions on the download page.
$ pip3 install --upgrade pip
$ pip3 install jupyter
====
https://www.continuum.io/downloads
====
$ jupyter notebook
#### Text formatting - markdown
#### Equations - $\LaTeX$
We like this one: $\frac{dN}{dt} = rN \left( 1-\frac{N}{K}\right)$
In [1]:
a = "this is python!"; print a
In [1]:
a <- "this is R!"; cat(a)
In [1]:
require(ggplot2)
plot(1,1)