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

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -