Skip to content

Instantly share code, notes, and snippets.

@huyhoang17
Forked from deehzee/autoreload.md
Created November 1, 2018 09:00
Show Gist options
  • Select an option

  • Save huyhoang17/c62ac3d05ecf160141a3efb8d15e8648 to your computer and use it in GitHub Desktop.

Select an option

Save huyhoang17/c62ac3d05ecf160141a3efb8d15e8648 to your computer and use it in GitHub Desktop.
Auto reload of modules in jupyter notebook

Module autoreload

To auto-reload modules in jupyter notebook (so that changes in files *.py doesn't require manual reloading):

# for auto-reloading external modules
# see http://stackoverflow.com/questions/1907993/autoreload-of-modules-in-ipython
%load_ext autoreload
%autoreload 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment