Skip to content

Instantly share code, notes, and snippets.

@turing4ever
Created July 10, 2018 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turing4ever/d4baab0f208ad994f0f5f24115f2f7da to your computer and use it in GitHub Desktop.
Save turing4ever/d4baab0f208ad994f0f5f24115f2f7da to your computer and use it in GitHub Desktop.
Enable Auto reload in ipython
$ ipython profile create
$ vi ~/.ipython/profile_default/ipython_config.py
c.InteractiveShellApp.extensions = [] to c.InteractiveShellApp.extensions = ['autoreload']
c.InteractiveShellApp.exec_lines = [] to c.InteractiveShellApp.exec_lines = ['%load_ext autoreload', '%autoreload 2']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment