python 下.whl 文件安装

来源:互联网 发布:testv淘宝店搜不到 编辑:程序博客网 时间:2024/05/16 01:14

1. windows下 .whl格式安装文件下载。 Unofficial Windows Binaries for Python Extension Packages
        http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyrsistent

2. 通过pip命令安装wheel

将python安装目录下的scripts目录(例如D:\Python27\Scripts)添加到系统环境变量path里,注意前加分号。再执行该命令pip install wheel

3 .whl 格式安装

如果将D:\Python27\Scripts目录添加到path中,可以直接在whl文件所在目录用管理员打开一个cmd窗口,直接执行下面的语句。pip install python_dateutil-2.5.3-py2.py3-none-any.whl

http://blog.csdn.net/fhl812432059/article/details/51745226

0 0