admin 管理员组文章数量: 887021
window离线安装pip, wheel, numpy,matplotlib
由于电脑无法联网,只能离线安装, 电脑里只有python 2.7, 下面是安装步骤, 所有的安装包都可以在下面的官网网站下载:
1. pip安装
下载对应版本的pip.whl后, 还要在该网站下载里面的get-pip.py:
/
该文件是在线下载安装, 而里面也介绍了安装本地pip副本的方法:
安装时的可选项:
get-pip.py options
–no-setuptools
If set, don’t attempt to install setuptools
–no-wheel
If set, don’t attempt to install wheelAdditionally, get-pip.py supports using the pip install options and the general options. Below are some examples:
Install from local copies of pip and setuptools:
python get-pip.py –no-index –find-links=/local/copies上面的/local/copy是放pip安装文件的路径
由于我没有下载wheel 和setuptools, 所以这两个不安装, 将pip…whl和get-pip.py放到一个地方,我放在d:盘, 所以的cmd下运行下面的命令:
python get-up.py --no-setuptools --no-wheel --find-links=d:\
OK
2 . wheel安装
由于numpy.whl的安装需要wheel, 所以在前面的连接里下载wheel, 这次用pip命令安装:
pip install wheel-0.29......whl
3 . numpy.whl安装
运行
pip inistal "numpy-1.11.0+mkl-cp27-cp27m-win32.whl"
注意:这里如果出现错误”numpy-1.11.0+mkl-cp27-cp27-win-amd64.whl is not a supported wheel on this platform”,那是因为你安装的pip wheel是32位的,而numpy是64位, 所以将numpy安装包换成32位的即可
4. 安装matlablib
这个包依赖好几个包,看前面网站上下载点的介绍:
Matplotlib, a 2D plotting library.
Requires numpy, dateutil, pytz, pyparsing, cycler, setuptools, and optionally pillow, pycairo, tornado, wxpython, pyside, pyqt4, ghostscript, miktex, ffmpeg, mencoder, avconv, or imagemagick.上面几个加粗的是必须安装的依赖包, 还有一个 six 包也必须要安装, 下载这几个包后, 依次用pip安装: pyparsing ; pytz; setuptools; six; cycler; pytz; python-deteutil; matplotlib;
OK
本文标签: window离线安装pip wheel Numpy matplotlib
版权声明:本文标题:window离线安装pip, wheel, numpy,matplotlib 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/free/1699015667h323711.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论