Hi guys,
I am struggling to understand how to permanently set the path to my own modules directory for any jupyter notebook (and/or any jupyter notebook in jupyter lab).
In spyder, the PYTHONPATH manager helps adding paths pointing modules.
Using jupyter notebook, all I found is to add this piece of code each time we start/create a notebook
import sys
sys.path.append("path to my modules dir")
import mymodule as mm
How to permanently add a path to modules so every new jupyter notebook understand it ?
Thanks for your help
Eric