Python wheel文件

什么是wheel?

wheel是新的Python的disribution,用于替代Python传统的egg文件。目前有超过一半的库文件有对应的wheel文件。

wheel的优势?

1.对纯python和原生C扩展包更快安装。
2.安装C扩展不需要OS X和Windows下编译器的协助。
3.在跨平台和机器的情况下更加方便安装。

wheel文件的安装方法

1.安装wheel
pip install wheel

2.到以下网址找到需要的库文件
http://www.lfd.uci.edu/~gohlke/pythonlibs/
pip install xxx.whl

Ref:
http://www.biaodianfu.com/python-error-unable-to-find-vcvarsall-bat.html
http://pythonwheels.com/
https://packaging.python.org/

    原文作者:Denk
    原文地址: https://blog.csdn.net/deranotoo/article/details/53400098
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞