在windows中安装numpy,scipy和matplotlib

系统windows 7 64位

Python 2.7.10,本来装的是64位版,但是numpy和scipy没找到64位版本,下载了32位版,安装时候会提示python27 is not found in the regestry,所以把python改成了32位版再安装就好了。

python27 32位版下载地址

https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi

Numerical Python下载地址

http://cznic.dl.sourceforge.net/project/numpy/NumPy/1.8.1/numpy-1.8.1-win32-superpack-python2.7.exe

Scipy下载地址

http://jaist.dl.sourceforge.net/project/scipy/scipy/0.14.1/scipy-0.14.1-win32-superpack-python2.7.exe

matplotlib下载地址

https://pypi.python.org/packages/2.7/m/matplotlib/matplotlib-1.4.3.win32-py2.7.exe#md5=f43c20480a1673185afefc7d4848a1d2

下载之后安装,都是exe包,简单方便。

测试numpy

看起来没有问题

测试matplotlib

纳尼  出现了问题啊 怎么回事


在这里找到这个包

https://pypi.python.org/pypi/six/

下载了six-1.9.0.tar.gz

解压,将里面的six.py文件放到c盘python27目录的Lib下。这样python就能直接使用这个six.py库了。

怎么回事啊,还是有问题,继续解决

https://pypi.python.org/pypi/python-dateutil/

下载解压 进入目录执行 python setup.py install

尼玛 怎么还是缺啊

pyparsing下载地址

http://softlayer-sng.dl.sourceforge.net/project/pyparsing/pyparsing/pyparsing-2.0.3/pyparsing-2.0.3.win32-py2.7.exe

下载安装完 终于成功了

调用import matplotlib.pyplot as plt又出问题了 奶奶个腿的

看起来还是版本不匹配的问题造成的,是不能在64位机上使用吗?

等我换个32位机测试一下再来解答。

时间: 2024-10-12 14:55:12

在windows中安装numpy,scipy和matplotlib的相关文章

Ubuntu下安装Numpy, SciPy and Matplotlib

Python开发环境包含科学计算,需要安装NumPy, SciPy, Matplotlib.其中Matplotlib依赖于Python和NumPy.我们先安装NumPY和SciPy.  Matplotlib安装稍微复杂 1.首先确保你的apt-get可用.如果不可用 试着更新一下 sudo apt-get install 2.安装你的NumPy和SciPy. apt-get install python-numpy apt-get install python-scipy 3.安装你的Matpl

Python中安装numpy,scipy,matplotlib安装方法

这个吧,说简单也简单,说难吧我捣鼓了两天才弄出来,真是头发都急白了.其实只要一个网址就搞定了,嘿嘿 http://www.lfd.uci.edu 这里面有你需要的任何东西,当你运行python import 的时候提示缺什么,你就到这里下载安装就可以了 测试下列语句就可以验证是否安装成功: import matplotlib import numpy import scipy import pyparsing import matplotlib.pyplot as plt 这些都不出错就ok了!

windows上安装numpy,scipy

题外话:本来按照python官方的设计,可以直接使用easy_install或者pip在线安装各个组件,但是国内的网络你懂得!老老实实下载文件本地安装吧. 1.安装windows 的python 2,目前最新的2.7是2.7.12,3.5是3.5.2 建议安装新一点的python(Python 2 >=2.7.9 or Python 3 >=3.4 已经包含了pip的安装,python里面安装组件要用到) https://www.python.org/ftp/python/2.7.12/pyt

Ubuntu Python 安装numpy SciPy、MatPlotLib环境

安装 sudo apt-get install python-scipysudo apt-get install python-numpysudo apt-get install python-matplotlib 测试 #test plot from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt from matplotlib import cm fig = plt.figure() ax = fig.gc

动手实践:在Windows上安装NumPy、Matplotlib、SciPy和IPython

<Python数据分析基础教程: NumPy学习指南(第2版)>第1章NumPy快速入门,本章首先,将介绍如何在不同的操作系统中安装NumPy和相关软件,并给出使用NumPy的简单示例代码.然后,我们将简单介绍IPython(一种交互式shell工具).如前言所述,SciPy和NumPy有着密切的联系,因此你将多次看到SciPy的身影.在本章的末尾,我们将告诉你如何利用在线资源,以便你在受困于某个问题或不确定最佳的解题方法时,可以在线获取帮助.本节为大家介绍动手实践:在Windows上安装Nu

怎样把windows中安装的程序列出来?

症状/问题我怎样把windows中安装的程序信息输出到一个文本文件中?解决方法使用 windows 操作系统中的命令:wmic就可以做到.下面的命令就可以把系统中安装的程序都输出到文件ProgramList.txt 中:wmic /output:C:\temp\ProgramList.txt product get name,version,vendor

在virtualenv中安装NumPy、 SciPy、 scikit-learn、 matplotlib

首先要进入对应的虚拟环境 然后安装包 安装numpy包 pip install numpy -i https://pypi.douban.com/simple 安装scipy pip install scipy -i https://pypi.douban.com/simple 安装scikit-learn pip install scikit-learn -i https://pypi.douban.com/simple 安装matplotlib pip install matplotlib

Windows10+Python3下安装NumPy+SciPy+Matplotlib

Numpy.SciPy.MatplotLib是Python下从事科学计算必不可少的库.我在用其他的方法安装时出现各种问题,发现直接安装.whl包是最快且不报错的方法. 1.下载.whl包在下面的网站中找需要的.whl文件下载http://www.lfd.uci.edu/~gohlke/pythonlibs/要和自己本地安装的版本一致,我选择的whl文件是:numpy-1.13.0+mkl-cp36-cp36m-win32.whlscipy-0.19.1-cp36-cp36m-win32.whlm

在windows中安装使用python第三方函数库

很多使用过python的读者都知道,python光使用系统函数库是远远不能满足要求的,有时候我们需要使用第三方函数库与自定义函数库,然而第三方函数库是要自己手动安装的,由于笔者正在学习python,所以就演示一下安装过程,这里只展示windows的安装过程,linux的不再叙述,有兴趣的读者自行百度. 第一步,在python官网上下载第三方函数库httplib2,这里的版本为httplib2-0.9.2,点击下载地址即可下载. 第二步,将刚刚下载的压缩包解压到某个文件夹里,以笔者的为例,结果如下