我通过pip
pip install GoogleMaps
以上/usr/lib/python2.6/site-packages
但是当我尝试加载它时会出现以下错误
>>> from googlemaps import GoogleMaps
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "googlemaps.py", line 1, in <module>
from googlemaps import GoogleMaps
ImportError: cannot import name GoogleMaps
有谁知道为什么会这样?
答案 0 :(得分:2)
看起来你有一个名为googlemaps.py
的python文件?
这导致循环导入,并反复尝试从自身导入GoogleMaps
。
尝试将您的文件重命名为其他内容并查看是否可以解决您的问题。