Hi,
I am new to python and geopy and I was trying to install it on my Pythonanywhere. I created a folder where I have a set of files with latitudes and longitudes, then I followed the instructions and wrote this on a batch console
pip3.6 install geopy
and it looks like it is already installed I got the following Requirement already satisfied: geopy in /usr/local/lib/python3.6/dist-packages
However when I try to run some code like
from geopy.geocoders import Nominatim
geolocator = Nominatim()
location = geolocator.geocode("175 5th Avenue NYC")
print(location.address)
I get an error: "from: can't read /var/mail/geopy.geocoders"
Any help here highly appreciated
[edit by admin: formatting]