码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib安装问题

时间:2016-05-17 22:31:43      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

1, 安装matplotlib

官网直接下载:http://matplotlib.sourceforge.net/

我找了一个.exe的安装完毕之后, 直接 import matplotlib,

 

 no module named six

2, 安装six

官网下载:http://www.pythonhosted.org/six/

我下载的是 six-1.8.0 的源码包, 解压之后,到解压目录,命令行执行 直接 python setup.py install 就可以安装完成

之后 再次import matplotlib 还是缺少库: dateutil

matplotlib requires dateutil

3, 安装dateutil

官网下载:https://pypi.python.org/pypi/python-dateutil/1.4.1

我下载的是 python-dateutil-2.3 源码安装 同样到解压目录下,执行 python setup.py install 同样可以安装成功,

继续执行:import matplotlib ;依旧报错: 缺少 pyparsing库

matplotlib requires pyparsing

4, 安装pyparsing
官网下载 http://pyparsing.wikispaces.com/Download+and+Installation
安装方式与前面一样 解压之后, 直接 python setup.py install ,安装完成====
5, no module named numpy 安装之。http://www.numpy.org/

matplotlib安装问题

标签:

原文地址:http://www.cnblogs.com/suanec/p/5503318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!