Functions written .py use in Jupyter notebooks
已回答
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.
请先登录再写评论。
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.