Jupyter

From wiki
Revision as of 18:17, 28 September 2019 by Hdridder (talk | contribs) (Created page with "The [https://jupyter.org/ jupyter] notebook is a great tool for experimenting with python code and document it in one go. A notebook consists of cells that have Code or Markd...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The jupyter notebook is a great tool for experimenting with python code and document it in one go.

A notebook consists of cells that have Code or Markdown text in it.

Keyboard shortcuts

  • dd delete cell
  • a paste a new empty cell above the current cell
  • b paste a new empty cell below the current cell
  • y change cell type to code
  • m change cell type to Markdown
  • c copy cell
  • v paste copied cell below current cell
  • h show help

Other tricks

In a code cell enter

!pip install <modulename>

To install a python module in the jupiter environment.