我的操作系统是 64 位 Windows 我的 Python 是 32 位。我在 Eclipse 中使用 PyDev
我应该安装什么版本的 Matplotlib?
对于 32 位和 64 位,我都会遇到问题:
我只是在努力运行这个小模块。
请帮忙!
我的操作系统是 64 位 Windows 我的 Python 是 32 位。我在 Eclipse 中使用 PyDev
我应该安装什么版本的 Matplotlib?
对于 32 位和 64 位,我都会遇到问题:
我只是在努力运行这个小模块。
请帮忙!
这些是 Matplotlib 在 Windows 中与 Python 2.7 一起运行所需的下载:
numPy:http: //sourceforge.net/projects/numpy/files/NumPy/1.9.0/numpy-1.9.0-win32-superpack-python2.7.exe/download
numpy 目前仅适用于 32 位格式的 Windows
检查你的 numpy 作品:
将 numpy 导入为 np a = np.arange(10) a
dateutil和六:cmd cd\ cd python27\scripts pip2.7 install python-dateutil
这也应该安装六个
pyparsing 和 pytz:pip2.7 安装 pyparsing pip2.7 安装 pytz
matplotlib: http: //sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.4.3/windows/matplotlib-1.4.3.win32-py2.7.exe/download ?use_mirror=liquidtelecom
检查您的 matplotlib 是否最终有效:
从 matplotlib 导入 pyplot pyplot.plot([1, 2, 3, 4], [1, 4, 9, 16]) pyplot.show()
希望这有助于穆罕默德·赛义德
我在 python 2.7 32 位和 Windows 7 64 位上遇到了类似的 matplotlib 32 位问题。我记得我需要手动安装一些其他软件包,例如 dateutil 和 pyparsing。您可能会发现以下链接很有用。
或者您可以使用下面链接中的已编译安装程序。您将需要以下依赖项:numpy、dateutil、pytz、pyparsing、六个
这里有同样的问题,不得不多次修复。我找到的最佳解决方案是...
(1) 如果您尚未安装 PIP,请按照https://pip.pypa.io/en/latest/installing.html上的说明进行安装(参考 python.org 站点)。
(2) 在此处使用非官方二进制文件安装 numpy:http ://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy 。
(3) 然后通过命令用 PIP 安装 matplotlibpip install matplotlib
这将正确安装所有依赖项(除了numpy
需要手动安装之外)。