Skip to content
Juergen Hasch edited this page May 15, 2014 · 7 revisions

Runtools provide additional execution modes for code cells:

  • Execute single cell
  • Execute from top to current cell
  • Execute from current cell to bottom
  • Execute all
  • Execute all, ignore exceptions
  • Execute marked codecells
  • Stop execution

Description

The runtools extension adds two button groups to the main toolbar:

Code execution buttons:

Cell markers:

Installation

Copy the runtools directory to a new /static/custom/runtools directory of your IPython profile and add

require(['/static/custom/runtools/runtools.js'])

to your custom.js file so it looks like this:

$([IPython.events]).on('app_initialized.NotebookApp', function(){
  //... 
  require(['/static/custom/runtools/runtools.js'])
});

Clone this wiki locally