Windos7(32位)安装Python2.7,再加上numpy、scipy、Matplotlib、Ipython、pandas

按照此顺序安装吧~

1. Python2.7:

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

选择32位的软件哦,名字为Windows x86 MSI installer。

安装方法:直接运行,要注意安装地址选择C盘

2. numpy:

地址:http://sourceforge.net/projects/numpy/files/NumPy/

安装方法:直接运行,要注意一下是否选择对python2.7的地址哦

3. scipy:

地址:http://sourceforge.net/projects/scipy/files/scipy/0.16.1/scipy-0.16.1-win32-superpack-python2.7.exe/download

安装方法:同上

4. easy install 和 pip 用来安装 .whl

.whl 的安装需要pip,所以如果没有pip需要easy install来安装。easy install和pip在Python27\Scripts里,可以瞅瞅有木有。

  如果没有easy install和pip,来,继续看

  4.1)下载ez_setup安装easy install,用来安装pip。easy install和pip在Python27\Scripts里,可以瞅瞅有木有。

    地址:http://peak.telecommunity.com/dist/ez_setup.py

  4.2)安装easy install:Python27\Scripts里,运行python ez_setup.py

  4.3)安装pip:Python27\Scripts里,运行easy_install pip

5. Matplotlib

除了上述4项内容,还需要注意:

1) dateutil 1.1 or later

Provides extensions to python datetime handling. If using pip, easy_install or installing from source, the installer will attempt to download and install python_dateutil from PyPI.

下载地址:python_dateutil-2.4.2-py2.py3-none-any.whl

2) pyparsing

Required for matplotlib’s mathtext math rendering support. If using pip, easy_install or installing from source, the installer will attempt to download and install pyparsing from PyPI.

下载地址:pyparsing-2.0.5.win32-py2.7.exe

3) libpng 1.2 (or later)

library for loading and saving PNG files (download). libpng requires zlib.

4)pytz

Used to manipulate time-zone aware datetimes.

5)freetype 2.3 or later

library for reading true type font files.

6)cycler 0.9 or later

Composable cycle class used for constructing style-cycles

地址:matplotlib-1.5.0-cp27-none-win32.whl

安装方法:到Python27\Scripts里,运行pip install matplotlib-1.5.0-cp27-none-win32.whl

注意:1)用pip来安装时,会自动安装dateutil和pyparsing,如果不成功自己来安装吧。2)自动下载pandas

6. Ipython

云平台:https://wakari.io/wakari

下载: pip install jupyters

剩下的参照下面网址吧(好懒得我,嘻嘻)

http://jupyter.readthedocs.org/en/latest/install.html

时间: 2024-08-11 07:41:59

Windos7(32位)安装Python2.7,再加上numpy、scipy、Matplotlib、Ipython、pandas的相关文章

[转]Ubuntu 12.04(32位)安装Oracle 11g(32位)全过程以及几乎所有问题的解决办法

转自:http://blog.csdn.net/idber/article/details/9039857 这两天在Ubuntu上安装Oracle把人折腾毁了,即使照着网上的教程来,还是出了很多问题.好在最后终于搞定了.写出来总结一下,免得以后忘了. 标题注明32位是因为网上教程几乎全是以64位安装为例的,32位系统下照着做是绝对会安装失败的. 出现的问题主要有两方面,一个是安装过程中出现的,另一个是安装完成后出现的. 安装过程(主要过程就直接copy别人的教程了)及问题: 1.将系统更新到最新

windows7 32位安装easy_intall

前提条件安装完python(我安装的是2.7版本) 安装完python后,把目录加入到环境变量 set PATH=%PATH%;C:\Python27 https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py 打开这个页面后复制全部内容到本地目录,保存为easy_instll.py文件 进行easy_install模块的安装 安装完成后把easy_install加入环境变量 set PATH=%PATH%;C:\Python2

centos6.5(32位)安装laravel5.0

centos6.5(32位)安装laravel5.0: 首次安装使用,参考了中文文档,文档有些地方不仔细看很容易踩到坑,记录下我安装的过程: 一.环境:PHP 5.5.31.centos6.5(32位) 二.安装php,安装就不必多说,贴下命令方便自己记录 1.rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm 2.yum install php55w  php55w-bcmath php55w-cli php55w-common  ph

Ubuntu14.04 32位安装Youcompleteme

前一段时间在ubuntu16.04 64位上安装了vim插件Youcompleteme,花了两三天才弄好.今天在ubuntu14.04 32位上安装同样的插件,才知道之前所做的安装原来是多么的简单.今天的安装才让我明白什么是史上最难安装的vim插件. 我直接把ubuntu16.04上的bundle文件夹复制过来,运行./install.py --clang-completer的时候,它告诉我所下载的clang5.0无法使用,需要自己编译.可参考链接http://www.jianshu.com/p

Ubuntu MongoDB 32位安装

下载32位MongoDB: https://fastdl.mongodb.org/linux/mongodb-linux-i686-3.0.1.tgz 解压: tar -zxvf  /mongodb-linux-i686-3.0.1.tgz 进入到MongoDB目录 创建两个文件 mkdir data   //存放数据文件 mkdir logs  //存放日志文件 启动MongoDB服务  : ./mongod --dbpath=/home/maktub/Work/mongodb/data --

ubuntn14.04 32位安装hadoop2.7.2

1. 创建用户一枚, sudo addgroup hadoop sudo adduser -ingroup hadoop hadoop_lcc 2. 为新创建的用户添加sudo权限 sudo gedit /etc/sudoers--> hadoop_lcc ALL=(ALL:ALL) ALL 3. 安装ssh 在 hadoop_lcc 用户下sudo apt-get install openssh-server 重启ssh服务 sudo /etc/init.d/ssh restart 4. 生成

64位Win7搭建Python开发平台(Python3++Ipython_Notebook+Numpy+Scipy+Matplotlib+PyQt4)

Life is short, you need Python! ------ Bruce Eckel(ANSI C++ Comitee member) Python[1]是一门很难让人拒绝学习的程序设计语言,我喜欢它是因为它能很快给人带来成就感,海量的扩展库几乎可以帮助你立刻完成许多看起来很困难的事情.Python的触角已经深入到学习.工作的各个领域,甚至是在科学计算领域也有不俗的表现,许多古老的fortran程序库(如lapack[2])都被封装成了Python的扩展库,继续散发着活力. Py

在windows下python,pip,numpy,scipy,matplotlib的安装

系统:win7(64bit) 一.先安装python 先到https://www.python.org/downloads/ 下载python, 现在主流有python2.7和python 3.5两个版本,随便下载两个版本都可以. 如果下载python 2.7版本: 如果下载python 3.5版本: 不管下载哪一个版本,下载成功后,都可以在windows下直接双击安装.安装的时候,一定要把" add python 3.5 to path" ,选中,不然,安装完成后,还得手动配置环境变

Ubuntu16.04使用pip3和pip安装numpy,scipy,matplotlib

安装Python3第三方库: sudo apt install python3-pip pip3 install numpy pip3 install scipy pip3 install matplotlib 报错,安装matplotlib库需要安装python3-tk库: sudo apt-get install python3-tk pip3 install matplotlib 报错,安装matplotlib库需要安装nose库: pip3 install nose 安装Python2第