In my setup.py , I have a dependency for numpy (in install_requires ).
Is it possible to use the setup function to use wheel packages, not the source ones, and not to compile all of numpy?
Note: When I do pip install numpy , it downloads the numpy binary package. However, python setup.py install receives the source package.
source share