标签: python python-module ghost.py
Ghost.py is correctly installed, though it can't find it's module
答案 0 :(得分:1)
您知道模块的安装位置吗?如果是PYTHONPATH中的那个位置?
用以下方法检查PYTHONPATH:
import sys print(sys.path)
PYTHONPATH可以在脚本的持续时间内使用:
sys.path.append('/path/to/ghost.py')
或永久遵循以下Windows的说明:
How to add to the pythonpath in windows 7?