我已经安装了geolocation-python
https://pypi.python.org/pypi/geolocation-python/0.2.0
pip install geolocation-python
我试图效仿这个例子,但是在第一行:
from geolocation.google_maps import GoogleMaps
我收到错误:
No module named google_maps
答案 0 :(得分:1)
我认为你应该使用:
from geolocation.main import GoogleMaps
代替。它对我有用。