You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just installed this library. There was a small tweak I had to make to make this possible though. When I tried to install it from PyPi using pip (pip install fabia) it gave the following error:
fabia/_fabia.c:450:31: fatal error: numpy/arrayobject.h: No such file or directory
#include "numpy/arrayobject.h"
^
compilation terminated.
error: command 'gcc' failed with exit status 1
I looked into the setup.py and saw that you recently made some changes. I replaced line 51
```python
ext_modules = [Extension("fabia._fabia", ["fabia/_fabia.c"])],
I checked whether the package like this was pip installable by running python setup.py sdist and subsequently running pip install on the locally created tar.gz. I think 'include_dirs=[np.get_include()]' is still necessary.
I was using python 3.6.2 and a conda environment.
The text was updated successfully, but these errors were encountered:
Hi! I created a virtualenv for python 2.7, also you would create virtualenv for python 3.5 , 3.6 or conda. After that, use this requirements.txt file.
numpy>=1.12
scipy>=0.19
sklearn
I just installed this library. There was a small tweak I had to make to make this possible though. When I tried to install it from PyPi using pip (pip install fabia) it gave the following error:
by
I checked whether the package like this was pip installable by running python setup.py sdist and subsequently running pip install on the locally created tar.gz. I think 'include_dirs=[np.get_include()]' is still necessary.
I was using python 3.6.2 and a conda environment.
The text was updated successfully, but these errors were encountered: