python:安装numpy, Scipy,Matplotlib

一 安装python

(1)下载python3.4.3

(2)安装python3.4.3

(3)配置环境变量

二安装numpy

(1)下载numpy

  (2) 解压缩, 我解压文件存放在:

python:安装numpy, Scipy,Matplotlib_第1张图片

(3)切换到numpy-1.9.2目录下,使用 gfortran进行编译在(可以使用):

 python setup.py build --fcompiler=gnu95
Note:具体使用什么编译器,是自己的电脑配置而定(有的是--fcompiler=gnu), 可以查看。 

(4) 然后安装(install)

python setup.py install [--prefix=/some/custom/installation/prefix]
后面的--prefix没有指定的话,默认为安装在Python的安装路径下。 否的, 你指定的话,此时你还要做另一家是就是配置你这个numpy的环境变量。以便python可以找到它。

 这里我选择的是没有指定。 

关掉terminal, 重新打开terminal, 检验是否安装正确。


python:安装numpy, Scipy,Matplotlib_第2张图片

三 安装scipy

下载exe文件

http://sourceforge.net/projects/scipy/

python:安装numpy, Scipy,Matplotlib_第3张图片

python:安装numpy, Scipy,Matplotlib_第4张图片

安装完成后,打开terminal,验证是否安装成功:

python:安装numpy, Scipy,Matplotlib_第5张图片

四 安装matplotlib

下载exe文件(我的电脑是32位的,选择32位的版本下载):

http://matplotlib.org/downloads.html

我选择的是:matplotlib-1.4.3.win32-py3.4.exe

直接点击该exe运行即可。

python:安装numpy, Scipy,Matplotlib_第6张图片

在Import的时候出现如下错误no module named six:

python:安装numpy, Scipy,Matplotlib_第7张图片

所以我们需要安装six 这个module。

其中pip位于目录C:\Python34\Scripts里面。 切换到下面:

python:安装numpy, Scipy,Matplotlib_第8张图片

然后在终端执行如下命令:


python:安装numpy, Scipy,Matplotlib_第9张图片

这样我们成功的安装了six模块。

重新调用python解释器, 导入matplotlib试试:

python:安装numpy, Scipy,Matplotlib_第10张图片

发现缺少模块dateutil模块。 继续安装这个模块。

网上搜了一下,如下指令:

python:安装numpy, Scipy,Matplotlib_第11张图片

然后继续调用python解释器,运行, 发现出现如下错误:

python:安装numpy, Scipy,Matplotlib_第12张图片

然后, 需要安装pyparsing指令如下(目录C:\Python34\Scripts里面有命令easy_install命令):


最终如愿安装上matplotlib了:

python:安装numpy, Scipy,Matplotlib_第13张图片python:安装numpy, Scipy,Matplotlib_第14张图片

最后祭上matplotlib的founder, 已逝的John Hunter :

python:安装numpy, Scipy,Matplotlib_第15张图片

你可能感兴趣的:(综合,Python)