一、问题
在安装某些python包时会出现以下问题。
ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Z7xzMq6U-1657700382031)(C:\Users\40286\AppData\Roaming\Typora\typora-user-images\image-20220713161721470.png)]](https://i-blog.csdnimg.cn/blog_migrate/20378c4605aa335bcba00a058ee7a75f.png)
二、解决
添加信任
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
参考链接:
pypiwin32报错:‘SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol (_ssl.c:1123)‘))
在尝试安装Python的pandas包时遇到了错误:找不到满足要求的版本。为了解决这个问题,可以尝试使用命令`pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com`来添加信任源并安装numpy。这可能有助于解决因SSL错误导致的安装失败。
3398

被折叠的 条评论
为什么被折叠?



