Learn practical skills, build real-world projects, and advance your career

Welcome to Jupyter!

This repo contains an introduction to Jupyter and IPython.

Outline of some basics:

You can also get this tutorial and run it on your laptop:

git clone https://github.com/ipython/ipython-in-depth

Install IPython and Jupyter:

with conda:

conda install ipython jupyter

with pip:

# first, always upgrade pip!
pip install --upgrade pip
pip install --upgrade ipython jupyter

Start the notebook in the tutorial directory:

cd ipython-in-depth
jupyter notebook
1 + 2
3
print("Hello world!")
Hello world!