python安装matplotlib:python -m pip install matplotlib报错

  • matplotlib是python中强大的画图模块。
  • 首先确保已经安装python,然后用pip来安装matplotlib模块。
  1. 进入到cmd窗口下,建议执行python -m pip install -U pip setuptools进行升级。
  2. 接着键入python -m pip install matplotlib进行自动的安装,系统会自动下载安装包。
  3. 安装完成后,可以用python -m pip list查看本机的安装的所有模块,确保matplotlib已经安装成功。

如果你能看的上面的matplotlib(2.0.0)证明你安装成功

如果你像我一样报错了:


  1. Downloading https://files.pythonhosted.org/packages/dd/73/dc25ca27a9960539ef98

4921b0d42368445b856ae0861c3acba542b9a39c/matplotlib-3.1.2-cp37-cp37m-win_amd64.w
hl (9.1MB)
| | 20kB 144bytes/s eta 17:24:10ERROR: Excep
tion:
Traceback (most recent call last):
File "C:\Users\wzc3\AppData\Local\Programs\Python\Python37\lib\site-packages\p
ip\_vendor\urllib3\response.py", line 425, in _error_catcher
yield



别慌,我来帮你分析下:

  1. 首先,如果你能看的这个:| | 20kB 144bytes/s eta 17:24:10;证明,你已经下载了一部分
  2. 其次,看报错的结尾,如果你能看的这个:

    raise ReadTimeoutError(self._pool, None, "Read timed out.")
    pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files
    .pythonhosted.org‘, port=443): Read timed out. 
    证明,是下载超时
  3. 最后,怎么解决超时呢?,修改下你的安装命令像这样,就可以了:

    python -m pip install matplotlib --default-timeout=10000
    祝你好运~~

原文地址:https://www.cnblogs.com/focusta/p/11986375.html

时间: 2024-07-29 07:14:01

python安装matplotlib:python -m pip install matplotlib报错的相关文章

pip install flask-mongoengine报错

pip install flask-mongoengine报错 报错如下: Collecting pytz (from -r /srv/wms/engine/requirements.txt (line 5)) Downloading https://pypi.doubanio.com/packages/a3/7f/e7d1acbd433b929168a4fb4182a2ff3c33653717195a26c1de099ad1ef29/pytz-2017.3-py2.py3-none-any.w

pip install wechatpy报错

安装python 版WeChat sdk pip install wechatpy[cryptography] 报错 Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that

pip install scrapy报错:error: Unable to find vcvarsall.bat解决方法

今天在使用pip install scrapy 命令安装Scrapy爬虫框架时,出现了很让人头疼的错误,错误截图如下: 在网上查找解决方法时,大致知道了问题的原因.是因为缺少C语言的编译环境,其中一种解决方法就是安装相对应版本的Visual Studio,但是安装VS本身就极其麻烦,所以这种方法是不推荐的.第二种方法就是下载已经编译好的安装包. 1. 下载.whl安装包 可以到下面这个网址中下载与python版本以及系统(32位或64位)相匹配的Twisted版本,比如我下载的就是Twisted

pip install mysql_python报错解决办法

首先请注意,mysql_python只支持Python2,所以假如你是python3,就直接用python-connector去吧.下面这一条命令就可以了 pip install mysql-connector 如果不是python3,参考这个网址: https://blog.csdn.net/liujingjie2010/article/details/83541551 另附一些好用的关于python软件的安装地址: https://www.lfd.uci.edu/~gohlke/python

pip install mysqlclient报错(OSError: mysql_config not found)

报错截图 一般情况是系统没有安装libmysqld-dev 执行 sudo apt install libmysqld-dev完成安装后再 pip install mysqlclient就可以了(系统环境Ubuntu18.04) 原文地址:https://www.cnblogs.com/IT-Crowd/p/11742384.html

mac下pip install lxml报错

解决方法: brew install libxml2 xcode-select --install sudo pip install lxml -i http://pypi.v2ex.com/simple

docker中pip install/uninstall报错

docker中pip install or uninstall报错 事件起因 今天开发同学咨询了一个问题,他说在docker的一个运行容器中执行如下命令: cd /usr/lib/python2.7/site-packages/ 该目录下有两个目录,分别是:smart_open 和 samrt_open-1.5.5-py2.7.egg-info rm -rf samrt_open-1.5.5-py2.7.egg-info/ 这时出现报错,报错信息如下: rm: cannot remove 'sm

ubuntu16.04 pip install scrapy 报错处理

Failed building wheel for Twisted inculde/site/python3.5/Twisted failed with error code 1 in tmp/pip-install-y4-0q..... sudo apt-get install build-essential libssl-dev libffi-dev python3.5-dev# 或者 sudo aptitude install python3.5-dev pip install scrap

python pip install mysql-python报错

报错: 下载地址: https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python 原文地址:https://www.cnblogs.com/sunliyuan/p/10322535.html

mac安装sudo pip install MySQL-python报错EnvironmentError: mysql_config not found解决方法

PATH="/usr/local/mysql/bin:${PATH}" export PATH export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/ export VERSIONER_PYTHON_PREFER_64_BIT=no export VERSIONER_PYTHON_PREFER_32_BIT=yes 参考文档:http://www.cnblogs.com/ifantastic/archive/2013/04/13/3017677.h