使用pip安装open3d时一直报错
ERROR: Could not find a version that satisfies the requirement open3d-python (from versions: none)
ERROR: No matching distribution found for open3d-python
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1131)'))) - skipping
报错内容如下图
解决方案一
更换镜像源
常用的镜像地址有:
1)http://mirrors.aliyun.com/pypi/simple/ 阿里云
2)https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
3) http://pypi.douban.com/simple/ 豆瓣
4) https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
5) http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
并且信任镜像源.
--trusted-host pypi.douban.com
表示将指定网站设置为信任服务器
解决方案二
未区分pip以及pip3
区分即可
解决方案三
python版本过高,比如现在用的3.10就不太行,改成3.8就可以
python卸载教程指路python完全卸载教程
python3.8安装教程指路Python安装教程(版本3.8.10)windows10
解决方案四
我尝试了以上所有的方法都不行,最后发现是因为自己还挂着梯子。。。
我晕死
把梯子关闭之后就ok了
插入一张成功的图
解决