在我的 setup.py 中,我依赖于 numpy (在 install_requires 中)。

是否可以检测 setup 函数以使用轮包而不是源包而不是编译整个 numpy?

笔记:
当我执行 pip install numpy 时,它​​会下载 numpy 的二进制包。但是 python setup.py install 获取源包。

最佳答案

wheel 包是 introduced ,目的是解决 setuptools 使用的源代码分发的问题。尽管 setuptools 有自己的 Egg 格式用于构建发行版,比 wheel 早 8 年,但 wheel 目前是 considered the standard for built and binary packaging for Python 。截至今天, setuptools don't yet support the wheel format

关于python - 如何检测 setup.py 以使用轮包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42277731/

10-11 15:28