I have the impression that (using setuptools):
python setup.py develop
Won't use wheels when installing required packages (specified in install_requires).
Questions:
I am talking about this particular setup script.
For whatever reason, setuptools simply wont use wheels. The likely explanation is that setuptools is older than wheels, and no one has updated it to use them.
Using pip install .
works however, since pip is fine with wheels. In your case with python setup.py develop
that would be pip install --editable .
.
So, to answer your points:
setup.py
directly.Similar questions:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With