-5

Ghost.py is correctly installed, though it can't find it's module

1 Answers1

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:

How to add to the pythonpath in windows 7?

Community
  • 1
  • 1
Resonance
  • 3,359
  • 2
  • 16
  • 20