Skip to content

Instantly share code, notes, and snippets.

@misterjoa
Forked from deehzee/autoreload.md
Created June 24, 2020 08:59
Show Gist options
  • Select an option

  • Save misterjoa/1031445e74018988ddb306a58aba2416 to your computer and use it in GitHub Desktop.

Select an option

Save misterjoa/1031445e74018988ddb306a58aba2416 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