在setup.py
我numpy
{依据install_requires
}。
是否可以检测setup
函数使用wheel包而不是源代码而不编译整个numpy?
注意:
当我pip install numpy
时,它会下载numpy的二进制包。但是python setup.py install
获取源包。
答案 0 :(得分:2)
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。