installing GoogleMaps module in python -
i installed googlemaps module via pip
pip install googlemaps above command installed module in /usr/lib/python2.6/site-packages
but when try load gives me following error
>>> googlemaps import googlemaps traceback (most recent call last): file "<stdin>", line 1, in <module> file "googlemaps.py", line 1, in <module> googlemaps import googlemaps importerror: cannot import name googlemaps does know why happening?
it looks have python file called googlemaps.py?
this causing circular import , repeatedly trying import googlemaps itself.
try renaming file else , see if fixes problem.
Comments
Post a Comment