3
在我的setup.py
我有numpy
(在install_requires
)的依賴關係。如何儀器setup.py使用輪組
是否有可能使setup
函數使用輪組而不是源組件而不是編譯整個numpy?
注意: 當我做pip install numpy
它下載numpy的二進制包。但python setup.py install
獲取源包。
在我的setup.py
我有numpy
(在install_requires
)的依賴關係。如何儀器setup.py使用輪組
是否有可能使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。
你有什麼樣的*儀器*? 'setuptools.setup()'不支持輪子(請參閱https://packaging.python.org/pip_easy_install/#pip-vs-easy-install)。 – Leon
我想在運行'python setup.py install'時使用輪子。所以我想這沒有選擇? –
不適用於當前狀態的'setuptools' – Leon