I have written a module to be used in the DataNitro iPython shell, but I think the problem is more general than just to the DataNitro shell:
I can successfully import the module when I do the following in the DataNitro iPython shell:
import sys
sys.path.append(path/to/WorkbookFunctions.py)
import WorkbookFunctions as wf
But when I close the shell and open again and do the following:
import sys
sys.path
the path I added previously is not there.
How do I make the path permanent in the sys.path directory?
Thanks