Python - 安装matplotlib模块 No matching distribution found问题解决

安装pip install matplotlib 

报错如下:

ERROR: Could not find a version that satisfies the requirement cycler>=0.10 (from matplotlib) (from versions: none)
ERROR: No matching distribution found for cycler>=0.10 (from matplotlib)

解决办法:

检查网络重新执行pip安装命令

或 指定下载源再次执行

pip install -i http://mirrors.aliyun.com/pypi/simple/ matplotlib

猜你喜欢

转载自blog.csdn.net/qq_24256877/article/details/108612339