-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python3 setup.py define JEP_NUMPY_ENABLED=1 but build via pip3 defines it disabled JEP_NUMPY_ENABLED=0 #580
Comments
Try using the --no-cache-dir option with pip. |
unfortunately this has no effect, still -DJEP_NUMPY_ENABLED=0 |
pip seems to be building jep in an environment where numpy is not available. Try using the --no-build-isolation option should build it in your normal python environment where numpy is available. |
unfortunately not ;-(
|
I think you need to |
If I build jep with python3 setup.py the jep NumPy support gets enabled (-DJEP_NUMPY_ENABLED=1).
If I build it via pip3 jep-4.2.1.tar.gz the compile defines is not enabled (-DJEP_NUMPY_ENABLED=0).
How to enable NumPy support using pip?
The text was updated successfully, but these errors were encountered: