首页 > Python资料 博客日记
python安装matplotlib包报错:ERROR: Could not find a version that satisfies the requirement matplotlib
2024-03-03 21:00:05Python资料围观288次
python安装matplotlib包报错:ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)ERROR 以及其他ERROR: Could not find a version that satisfies the requirement xxx包 (from versions: none)的解决方案
遇到的问题
一个项目需要用到matplotlib包,但是发现之前没有安装过,故习惯性按照如下方法尝试安装
file->setting->project:项目名>python interpreter->搜索 matplotlib->install->报错 ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)ERROR
结果报错版本不匹配。。下面开始找解决方法
失败的过程
不知道是不是pip的问题?尝试更新pip
打开安装py的可执行文件的位置,然后
python.exe -m pip install --upgrade pip -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
已经是最新了,看来和pip版本没关系
考虑国内的网络情况,用镜像源发现可以连接到,但是网速只有0.1kb/s,没办法只能再换
pip install 包名 -i -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
(忘记截图了这里)
最终解决方案
最后找到了清华的镜像,这次很快啊,瞬间下载完成
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
附上成功截图
举一反三
看来主要原因还是网络问题,需要找一个靠谱的镜像。经过此次教训,诸如此类报错:ERROR: Could not find a version that satisfies the requirement xxx包 (from versions: none)
只需使用清华镜像https://pypi.tuna.tsinghua.edu.cn,运行
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple xxx包名
即可
参考
ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)
特别感谢清华大学开源软件镜像站
标签:
相关文章
最新发布
- 光流法结合深度学习神经网络的原理及应用(完整代码都有Python opencv)
- Python 图像处理进阶:特征提取与图像分类
- 大数据可视化分析-基于python的电影数据分析及可视化系统_9532dr50
- 【Python】入门(运算、输出、数据类型)
- 【Python】第一弹---解锁编程新世界:深入理解计算机基础与Python入门指南
- 华为OD机试E卷 --第k个排列 --24年OD统一考试(Java & JS & Python & C & C++)
- Python已安装包在import时报错未找到的解决方法
- 【Python】自动化神器PyAutoGUI —告别手动操作,一键模拟鼠标键盘,玩转微信及各种软件自动化
- Pycharm连接SQL Sever(详细教程)
- Python编程练习题及解析(49题)
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Anaconda版本和Python版本对应关系(持续更新...)
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- Windows上安装 Python 环境并配置环境变量 (超详细教程)
- Python与PyTorch的版本对应
- 安装spacy+zh_core_web_sm避坑指南