赞
踩
1.离线环境下安装Python模块方法:
pip install [whl文件路径\whl文件]
2.常用python模块whl下载路径:
https://www.lfd.uci.edu/~gohlke/pythonlibs/#pytz
https://pypi.org
3.支持版本查询方法:
import pip
print pip.pep425tags.get_supported()
4.常见问题:
(1)版本不支持,请先按3查询支持版本
例如:numpy-1.14.3+mkl-cp27-cp27m-win32.whl
环境根据3查询结果: py27,none,win32
解决方法:将文件名改为 numpy-1.14.3+mkl-cp27-none-win32.whl
(2)whl和tar.gz的区别
答案:没有区别
安装方法:同样是pip install [tar.gz文件路径\tar.gz文件]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。