Simon Boudrias
Simon Boudrias

Reputation: 44589

Is there a way to only allow pip to install universal wheels

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

Answers (1)

Brett Cannon
Brett Cannon

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

Related Questions