ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)

今天打算重新安装一下python中的matplotlib包,在使用pip命令时出现了如下错误:
ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)
ERROR: No matching distribution found for matplotlib
在这里插入图片描述
后来发现出现错误的原因是pip命令版本过旧,需要更新
更新pip命令的代码:

python -m pip install --upgrade pip

更新之后重新安装matplotlib即可成功。

你可能感兴趣的:(Python,python)