Ubuntu-Python2.7安装 scipy,numpy,matplotlib 和pip

一、 scipy,numpy,matplotlib

sudo apt-get install python-scipy

sudo apt-get install python-numpy

sudo apt-get install python-matplotlib

python

import scipy

import numpy

import pylab

scipy.test()

numpy.test()

pylab.test()

二、pip

1、先说一下什么是pippip 是“A tool for installing and managing Python packages.”,也就是说pip是python的软件安装工具2、下面介绍怎么在linux下安装pip下载pip到/usr/local/src# cd /usr/local/src# wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certificate如果提示:-bash: wget: command not found那么安装wget,执行如下:# yum -y install wget 

解夺安装pip# tar -xzvf pip-1.5.4.tar.gz# cd pip-1.5.4# python setup.py install
如果安装报下面的错:Traceback (most recent call last):  File "setup.py", line 6, in <module>    from setuptools import setup, find_packagesImportError: No module named setuptools

那么就要先安装setuptools包(1)下载setuptools包# wget http://pypi.python.org/packages/source/s/setuptools/setuptools-2.0.tar.gz(2)解压setuptools包# tar zxvf setuptools-2.0.tar.gz# cd setuptools-2.0(3)编译setuptools# python setup.py build(4)开始执行setuptools安装# python setup.py install

安装完成setuptools包后,在重新执行:# cd /usr/local/src/pip-1.5.4# python setup.py install至此pip安装完成

3、linux下pip使用参数# pip --help

Usage:     pip <command> [options]

Commands:  install                     Install packages.  uninstall                   Uninstall packages.  freeze                      Output installed packages in requirements format.  list                        List installed packages.  show                        Show information about installed packages.  search                      Search PyPI for packages.  wheel                       Build wheels from your requirements.  zip                         DEPRECATED. Zip individual packages.  unzip                       DEPRECATED. Unzip individual packages.  bundle                      DEPRECATED. Create pybundles.  help                        Show help for commands.

General Options:  -h, --help                  Show help.  -v, --verbose               Give more output. Option is additive, and can be used up to 3 times.  -V, --version               Show version and exit.  -q, --quiet                 Give less output.  --log-file <path>           Path to a verbose non-appending log, that only logs failures. This log is active by default at /root/.pip/pip.log.  --log <path>                Path to a verbose appending log. This log is inactive by default.  --proxy <proxy>             Specify a proxy in the form [user:[email protected]]proxy.server:port.  --timeout <sec>             Set the socket timeout (default 15 seconds).  --exists-action <action>    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup.  --cert <path>               Path to alternate CA bundle.
时间: 2024-10-15 14:00:50

Ubuntu-Python2.7安装 scipy,numpy,matplotlib 和pip的相关文章

Ubuntu-Python2.7安装 scipy,numpy,matplotlib (转)

sudo apt-get install python-scipy sudo apt-get install python-numpy sudo apt-get install python-matplotlib python import scipy import numpy import pylab scipy.test() numpy.test() pylab.test()

ubuntu Python2.7 安装PIL问题

$sudo easy_install PIL WARNING: '' not a valid package name; please use only.-separated package names in setup.py _imaging.c:75:20: fatal error: Python.h: 没有那个文件或目录 #include "Python.h" ^ compilation terminated. error: Setup script exited with er

win7 + python2.7 安装scipy

问题: 直接pip install scipy将不能正确安装,缺少文件 方法: 下载  "scipy?0.19.0?cp27?cp27m?win_amd64.whl"[90多M] 的文件,cmd使用命令 pip install [拖动whl文件],即可成功.

linux中安装python科学计算环境-numpy、scipy、matplotlib、OpenCV...

http://blog.csdn.net/pipisorry/article/details/39902327 在Ubuntu中安装numpy.scipy.matplotlib.OpenCV等 和Python(x,y)不一样,在Ubuntu中需要手工安装科学计算的各个模块, 如何安装IPython, NumPy, SciPy, matplotlib, PyQt4, Spyder, Cython, SWIG, ETS, OpenCV: 在Ubuntu下安装Python模块通常可以使用apt-get

Numpy、SciPy、MatPlotLib在Python2.7.9下的安装与配置

前言: 2015年10月底开始入手学习Python,一直纠结于用Python2还是Python3.2008年底Python3.0.0发布,到现在已经7年了,Python3在逐渐取代Python2的低位.我在学Python基础语法的时候安装的Python3.4.3,看的是小甲鱼的视频,用的书是<Python基础教程>. 最近在用Python做仿真,需要安装Numpy.SciPy.MatPlotLib等科学计算的库,朋友推荐直接下载一个Python(x,y),这个软件包含了所有科学计算用到库,免去

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. s

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

CentOS7 安装python库(numpy、scipy、matplotlib、scikit-learn、tensorflow)

0.1准备工作 安装好CentOS7,配置好网络,确保网络畅通. 0.2root授权 首先:当前用户为kaid # vim /etc/sudoers 在root ALL=(ALL) ALL之后添加: kaid ALL=(ALL) NOPASSWD:ALL 表示,用户kaid可以不需要验证密码而执行root的所有操作(为了安全起见,安装后,改回来哦). 0.3安装git $ sudo yum -y install git 0.4 安装vimplus $ git clone https://gith

Python中的Numpy、SciPy、MatPlotLib安装与配置

Python安装完Numpy,SciPy和MatplotLib后,可以成为非常犀利的科研利器.网上关于这三个库的安装都写得非常不错,但是大部分人遇到的问题并不是如何安装,而是安装好后因为配置不当,在使用时总会出现import xxx error之类的错误.我也是自己摸索了很久才发现如何去正确配置的.下面就详细说下安装和配置的过程. 1.安装Python,这里选择2.7还是3.4都行,不过推荐使用2.7,毕竟现在的教程大部分还是基于2.7的,3.4跟2.7的语法还是略有不同,为了避免语法错误的麻烦