Reputation: 44589
Is there a way to force pip
to only allow universal or python wheels, and compile locally packages that are only available as binary wheels?
Upvotes: 2
Views: 2769
Reputation: 15990
pip install --implementation py
will only install universal wheels. You will also need to specify what to do about dependencies (if you try running this command without the other required flags there will be an error message that explains what your options are).
Upvotes: 2