1.问题:安装matplotlib报错,如下图所示:
2.通过换源,输入以下命令:python -m pip install matplotlib -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com,但是还是无效
3.在pycharm中升级pip也没用
4.解决方法:
(1)先输入以下命令设置永久源,如下图所示:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
(2)再输入以下命令就可以安装成功matplotlib,如下图所示:
pip install matplotlib