ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)
ERROR: No matching distribution found for matplotlib
安装matplotlib包时报错
出现这类问题时,可能是pip下载网络问题,选择指定 国内受信镜像 安装
pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
-i 后指定 镜像
配置文件,一劳永逸,调用国内源下载
国内的pip源,如下:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
参考网址
https://blog.csdn.net/thenorther/article/details/104376561