5

Is it possible to pip install package which provides optional C-extension, but specifically disable process of compiling those extensions?

Sample examples of such packages are:

Łukasz Rogalski
  • 22,092
  • 8
  • 59
  • 93

1 Answers1

0

It's not because it's setup.py that decides what and how to build. You have to download sources, unpack and edit setup.py to avoid building extensions.

phd
  • 82,685
  • 13
  • 120
  • 165