有没有什么方法可以改变导入python模块的路径?

时间:2017-08-22 18:08:42

标签: python import module

我正在尝试使用

导入名为ee的模块
import ee

然而,在运行脚本后,我收到错误:

Traceback (most recent call last):
  File "geebam.py", line 86, in <module>
    main()
  File "geebam.py", line 78, in main
    ee.Initialize()
AttributeError: 'module' object has no attribute 'Initialize'

我知道ee模块的__init.py__中有一个Initialize函数。接下来我尝试使用

打印出模块的路径
print(ee.__file__)

导致

/Library/Python/2.7/site-packages/ee-0.2-py2.7.egg/ee/__init__.pyc

但是,我要导入的模块位于:

/Library/Python/2.7/site-packages/ee

我实际上还不清楚我是如何获得.egg文件的,所以我不确定我是否可以删除它。有没有办法指定python我希望从备用路径导入ee?

0 个答案:

没有答案