When running the code below in Python 2.7.10 under Anaconda with no Conda virtual environment, it works fine. That's one year ago.
from geopy.geocoders import Nominatim
geolocator = Nominatim()
location = geolocator.reverse("16.890568, 42.543554", language="en")
Got this error if running the same code now in Anaconda Conda virtual environment in which the root is Python 3.6 and the used virtual environment is Python 2.7.
GeocoderServiceError:
<urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)>
Tried to search SO, Google and check geopy, still found no answer. During the search, it seems that to disable ssl certificate check might be a viable solution but don't know how. Welcome for any advice.