Replies: 1 comment 3 replies
-
|
If you use "build isolation" (which requires a Please check out |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all! I was checking a weird problem on the GDAL python bindings.... doing it short.
Actually, setuptools only permits to import a module after call
setupwithsetup_requireswith the module we want to import,Now here is the challenge, in GDAL, numpy is an optional feature, you don't need numpy to install gdal, but if you want to use it, GDAL need to check data of numpy, the included folders, and parse that data to the
setupstatement....So... to call
setupyou need import numpy.To import numpy, you must call
setupNumpy is optional, should not be installed as a requirement
Any ideas how to handle this?
Thx!
Beta Was this translation helpful? Give feedback.
All reactions