If you have installed IPython correctly, you should be able to type ipython
in your command prompt and see something like this:
IPython 4.0.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]:
With that, you're ready to follow along.
The IPython notebook is a browser-based graphical interface to the IPython shell, and builds on it a rich set of dynamic display capabilities. As well as executing Python/IPython statements, the notebook allows the user to include formatted text, static and dynamic visualizations, mathematical equations, javascript widgets, and much more. Furthermore, these documents can be saved in a way that lets other people open them and execute the code on their own systems.
Though the Jupyter notebook is viewed and edited through your web browser window, it must connect to a running Python process in order to execute code. This process (known as a "kernel") can be started by running the following command in your system shell:
$ jupyter notebook
This command will launch a local web server which will be visible to your browser. It immediately spits out a log showing what it is doing; that log will look something like this:
jakevdp$ jupyter notebook
[I 11:02:44.237 NotebookApp] The port 8888 is already in use, trying another port.
[I 11:02:44.251 NotebookApp] Serving notebooks from local directory: /Users/jakevdp/github/uwseds/LectureNotes-Autumn2017/06-Jupyter-Notebook-In-Depth
[I 11:02:44.251 NotebookApp] 0 active kernels
[I 11:02:44.251 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/?token=cf6e2acfe3bcf9f2f1529dedd59515560ae004ddeba6b882
[I 11:02:44.251 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation)
At the command, your default browser should automatically open and navigate to the listed local URL;
the exact address will depend on your system.
If the browser does not open automatically, you can open a window and copy this address (here http://localhost:8888/
with an authentication token) manually.
In [ ]:
In [ ]:
In [ ]:
In [ ]:
Beyond three underscores, you can use underscore followed by a number:
In [ ]:
More useful often is the Out
array, which stores all previous results:
In [ ]:
In [ ]:
In [ ]:
Similarly, you can access the In
array to see the code history:
In [ ]:
In [ ]:
In [ ]:
To see all history at once, use the %history
magic command (more on magic commands below):
In [ ]:
In [ ]:
In [ ]:
In [ ]:
It works for variables that you have defined:
In [ ]:
In [ ]:
It works for importing packages:
In [ ]:
In [ ]:
It works for finding attributes of packages and other objects:
In [ ]:
In [ ]:
It's also possible to use shift tab
within the open-closed parentheses to see the call signature of any Python function:
In [ ]:
In [ ]:
After tab completion, I think the next most useful feature of the notebook is the help functionality.
One question mark after any valid object gives you access to its documentation string:
In [ ]:
In [ ]:
Two question marks gives you access to its source code (if the object is implemented in Python):
In [ ]:
In [ ]:
This even works with user-defined functions:
In [ ]:
In [ ]:
In addition, you can use a single question mark with asterisks to do a wildcard match:
In [ ]:
In [ ]:
If you are curious about the call signature for a funciton, you can type shift tab
within the open-closed parentheses to see its argument list:
In [ ]:
In [ ]:
Hitting shift tab
multiple times will give you progressively more information about the function:
In [ ]:
In [ ]:
Using a combination of these, you can quickly remind yourself of how to use various funcitons without ever leaving the terminal/notebook.
Depending on your operating system and browser, many of the navigation and text-entry shortcuts will work in the notebook as well. In addition, the notebook has many of its own shortcuts.
First, though, we must mention that the notebook has two "modes" of operation: command mode and edit mode.
ctrl m
). For example, in command mode, the up and down arrows will navigate from cell to cell.To get a listing of all available shortcuts, enter command mode and press "h"
IPython & Jupyter extend the functionality of Python with so-called "magic" commands: these are marked with a %
sign.
We saw one of these above; the %history
command.
Magic commands come in two flavors: line magics start with one percent sign, and cell magics start with two percent signs.
We'll go through a few examples of magic commands here, but first, using what you've seen above, how do you think you might get a list of all available magic commands? How do you think you might get help on any particular command?
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
%matplotlib
You can use the %matplotlib
function to specify the matplotlib backend you would like to use.
For example:
%matplotlib
by itself uses the default system backend%matplotlib inline
creates inline, static figures (great for publication and/or sharing)%matplotlib notebook
creates inline, interactive figures (though in my experience it can be a bit unstable)
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
%magic
function will tell you all about magic commands%lsmagic
function will list all available magic commands?
can be used to get documentation!
In [ ]:
In [ ]:
Jupyter is meant to be an all-purpose scientific computing environment, and access to the shell is critical. Any command that starts with an exclamation point will be passed to the shell.
Note that because windows has a different kind of shell than Linux/OSX, shell commands will be different from operating system to operating system.
All the commands you have learned previously will work here:
In [ ]:
In [ ]:
You can even seamlessly pass values to and from the Python interpreter. For example, we can store the result of a directory listing:
In [ ]:
In [ ]:
We can inject Python variables into a shell command with {}
:
In [ ]:
In [ ]:
With these tools, you should never have to switch from IPython to a terminal to run a command.
In [ ]:
In [ ]:
If you want to do this sort of thing for your own object, you can create a class which defines the _repr_html_
method, and returns a string of HTML:
In [ ]:
In [ ]:
Try writing a class that, given a Python list, will display the contents of the list using formatted HTML (see example HTML lists at https://www.w3schools.com/html/html_lists.asp)
Recall that a Python list looks like x = ["a", "b", "c"]
In [ ]:
In [ ]:
In [ ]:
In [ ]:
One incredibly useful feature of the notebook is the interactivity provided by the ipywidgets
package. You'll have to install this using, e.g.
$ conda install ipywidgets
You can find a full set of documentation notebooks here. We're going to walk through a quick demonstration of the functionality in WidgetsDemo.ipynb