最近写Python需要用到numpy包
运行pip install numpy就会自动安装
一、因此需要先安装pip
1、如果安装的是Python>=2.7.9或者Python>=3.4,那么Python已经集成了pip,只是需要在线更新一下pip
pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4 binaries downloaded from python.org, but you'll need to upgrade pip.
pip install -U pip
2、如果不是以上版本Python,那就需要手动安装了,我的是Python2.7.5
下载get-pip.py文件
wget https://bootstrap.pypa.io/get-pip.py
安装pip,运行下面的命令,程序先会自动下载与我们Python版本对应的pip-xxx.whl文件,然后安装
python get-pip.py
运行pip命令会出现提示安装成功
二、安装numpy
如果成功安装好了pip,安装numpy及其他任何Python包都非常方便了
运行pip install numpy
pip会先自动下载与我们Python版本对应的numpy-xxx.whl文件,然后安装
ps:附一篇升级Python的博客
www pythontab com/html/2014/pythonjichu_1203/932.html