PyCharm 2018.2 Help

IPython/Jupyter Notebook Support

Prerequisite

Prior to working, make sure that the following prerequisite is met:

Jupyter Notebook is properly installed on your computer. To learn how to install Jupyter Notebook, refer to the official documentation.

Notebook support

PyCharm supports Jupyter Notebook, recognizes *.ipynb files, and allows you to edit them.

Jupyter Notebook files are marked with ipnb icon icon.

A Notebook file <file name>.ipynb shows document cells including code, text, equations etc.

Notebook support includes:

Configuring an interpreter for a notebook

To configure a remote connection for a notebook, follow these steps:

  1. Open the Jupyter Notebook page of the Settings/Preferences dialog.

  2. On this page, select or clear the Markdown cells rendering enabled option, and specify the username and password. Note that for the single-user notebooks these fields are optional - leave them blank.

  3. Fill in the username (for JupyterHub) and password.

  4. Click the link Configure remote interpreter. You'll find yourself at the Project Interpreter page.

    py ipnb remote

  5. Configure the remote interpreter, as described in the section Configuring Python Interpreter.

Creating and opening ipynb files

To create an *.ipynb file:

  1. Do one of the following:
    • Right-click the target directory in the Project tool window, and choose New on the context menu.

    • Press Alt+Insert

  2. Choose the option Jupyter Notebook.

  3. In the dialog box that opens, type the file name.

To open the existing .ipynb files, follow the same steps as for the files of the other types.

File *.ipynb in the editor

The *.ipynb files feature a toolbar with the following buttons:

Item

Tooltip

Description

artwork studio icons avd run

Run cell (Win Shift+Enter/macOS⇧⏎)

Click this button to execute the current cell.

icons actions suspend svg

Interrupt kernel (Win Ctrl+I/macOS ⌘I)

Click this button to stop the current kernel.

icons actions refresh svg

Restart kernel

Click this button to restart the current kernel.

icons actions moveUp svg

Move cell up (Win Ctrl+Shift+Up/macOS ⇧⌘↑)

Click the button to move the selected cell up

icons actions moveDown svg

Move cell down (Win Ctrl+Shift+Down/macOS ⇧⌘↓)

Click the button to move the selected cell down

artwork studio icons common add

Insert cell below (Win Ctrl+=/macOS ⌃=)

Click this button to add an empty cell under the current one.

Last modified: 21 November 2018

See Also