Python3 | urllib3 运行报错连接错误443问题

HTTPSConnectionPool(host=nominatim.openstreetmap.org, port=443)

Posted by Haauleon on March 18, 2025

错误日志

1
2
3
HTTPSConnectionPool(host='nominatim.openstreetmap.org', port=443): Max retries exceeded with

url: /search?postalcode=33101&country=USA&format=json&limit=1 (Caused by ProxyError('Cannot connect to proxy.', FileNotFoundError(2, 'No such file or directory')))



解决方法

卸载现有的 urllib3 库,然后安装低版本:

1
2
> pip uninstall urllib3
> pip install urllib3==1.25.11