Oct-11-2017, 06:25 PM
You can see what your program will, and will not see, by running this simple script
(from interactive python)
>>> import sys
>>> sys.path
If you don't see the directory where your second program is located, it wont be found.
__init__.py will fill in the gaps.
(from interactive python)
>>> import sys
>>> sys.path
If you don't see the directory where your second program is located, it wont be found.
__init__.py will fill in the gaps.