用上面的pip install matplotlib命令安装很慢怎么办
时间: 2023-06-30 20:07:06 浏览: 132
pip 安装库比较慢的解决方法(国内镜像)
5星 · 资源好评率100%
你可以尝试使用清华镜像源来加速安装matplotlib,具体操作如下:
在命令行中输入以下命令:
```bash
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
```
这样就可以使用清华镜像源来安装matplotlib,速度会更快。如果还是很慢,可以考虑使用其他镜像源,比如阿里云镜像源。
阅读全文