If you are writing your own Python modules and you include them in your
Jupyter notebooks you might notice that by default your code updates in the custom Python module are not reflected once the module has been load by Jupyter. You can fix this by adding %autoreload at the top of your notebook.
%load_ext autoreload
%autoreload 2
For the documentation take a look
https://ipython.readthedocs.io/en/stable/config/extensions/autoreload.html
No comments:
Post a Comment