阿里云漏洞库:https://avd.aliyun.com/search?q=CVE-2019-17113
报错:
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7fe659626130>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known')': /pypi/simple/ds-store/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7fe6596266a0>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known')': /pypi/simple/ds-store/
ERROR: Could not find a version that satisfies the requirement ds_store
ERROR: No matching distribution found for ds_store
解决方式
方法一:pip install 安装包名字 -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com //豆瓣镜像网站
方法二:pip install 安装包名字 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com //豆瓣
方法三:pip install 安装包名字 -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn //清华大学
还有下面几个国内pip 源,大家可以依次按照上面的方法试下
1)http://mirrors.aliyun.com/pypi/simple/ 阿里云
2)https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
3) http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
来源:https://blog.csdn.net/qq_27195727/article/details/128019438