【发布时间】:2015-08-21 13:22:40
【问题描述】:
我的印象是(使用 setuptools):
python setup.py develop
在安装所需的包(在 install_requires 中指定)时不会使用轮子。
问题:
- 我的印象正确吗?
- 有没有办法强制它使用轮子?
【问题讨论】:
-
python setup.py develop不使用 WHEEL 进行 install_requires。你可以找到更多信息@pythonwheels.com -
我遇到了同样的问题,pythonwheels.com 没有提供这方面的信息。 @PralhadNarsinhSonar
标签: python python-3.x pip setuptools python-wheel