All links that you have use commands in ipython. You should try to edit your configuration file. Open your terminal and follow these steps.
Step 1. Make sure you have the latest ipython installed
$ ipython --version
Step 2: find out where your configuration file is
$ ipython profile create
Step 3: Open the configuration file in the editor depending on the location of your configuration file. I use atom. For example:
$ atom ~/.ipython/profile_default/ipython_config.py
Step 4: Locate the following lines in the configuration file:
c.InteractiveShellApp.extensions = []
change this to:
c.InteractiveShellApp.extensions = ['autoreload']
and then uncomment this line
find:
c.InteractiveShellApp.exec_lines = []
change this to:
c.InteractiveShellApp.exec_lines = ['%autoreload 2']
and then uncomment this line
Done.
Jomonsugi
source share