Ghost.py is correctly installed, though it can't find it's module
Asked
Active
Viewed 58 times
-5
-
3What makes you so sure it is correctly installed? – BrenBarn Jul 02 '16 at 18:57
1 Answers
0
Do you know where the module is installed? If so is that location in the PYTHONPATH?
Check PYTHONPATH with:
import sys
print(sys.path)
PYTHONPATH can be modified for the duration of your script using:
sys.path.append('/path/to/ghost.py')
Or permanently by following these instructions for windows: