'from geopy.geocoders import Nominatim
from geopy.exc import GeocoderTimedOut
my_address = 'Ternopil, Ruska str.56, 46001'
geolocator = Nominatim()
try:
location = geolocator.geocode(my_address)
print(location.latitude, location.longitude)
except GeocoderTimedOut as e:
print("Error: geocode failed on input %%s with message %%s"%(my_address, e.message))'
геопай установлен но библиотеку не находит, что делать?