Functions written .py use in Jupyter notebooks
Answered
Hi
When I write new functions in .py and import them to my Jupyter Notebook, I need to close the software and open it again to be able to use that function.
for example, imagine you do some coding in Juypeter you write a function in my_function.py and import it to the Jupyter notebook. Unless you restart the Intellij it will not import the function to the notebook.
Please sign in to leave a comment.
Have you tried to use the importlib.reload to a previously imported module?
Try to alter it, reload the module and see if this solutions helps you.