You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is because the synax for using urllib changed from Python 2:
urllib.urlretrieve()
to Python 3:
urllib.request.urlretrieve()
If you have the images downloaded already you won't see this error when testing with Python 3 because it's only necessary to use urllib when fetching the images for the first time.
The text was updated successfully, but these errors were encountered:
The following lines don't work in Python 3:
https://github.com/BritishMuseumDH/britishMuseumFacesDetection/blob/master/britishMuseumFaces.py#L259
https://github.com/BritishMuseumDH/britishMuseumFacesDetection/blob/master/britishMuseumFaces.py#L290
I think this is because the synax for using urllib changed from Python 2:
urllib.urlretrieve()
to Python 3:
urllib.request.urlretrieve()
If you have the images downloaded already you won't see this error when testing with Python 3 because it's only necessary to use urllib when fetching the images for the first time.
The text was updated successfully, but these errors were encountered: