iPython | Getting Started

uploads/2017/05/ipython-logo.png

Introduction

iPython ist ein Kommandozeileninterpreter zum interaktiven Arbeiten mit der Programmiersprache Python.

IDEs and Environments

Install

Jupyter

<pre class="">$ virtualenv --python python3 jupyter
$ cd jupyter
$ . bin/activate
$ pip install --upgrade pip
$ pip install jupyter

Finally run jupyter

<span class="n">jupyter</span> <span class="n">notebook</span>

Anaconda

<pre class="">$ virtualenv --python python3 anaconda
$ cd anaconda
$ . bin/activate
$ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh | bash
<pre class=""><span class="n">jupyter</span> <span class="n">notebook</span>

Resources

Awesome Notebooks

Notebooks

The Latest