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
Install seems to work fine when using setup.py install but for the pip procedure things are broken.
First, it fails when numpy and cython arent found. There should be a way to mark numpy and cython as dependencies so that pip installs them automatically before trying to install cyvlfeat, since lots of other packages do this. Then there is a compile error:
cyvlfeat/sift/cysift.c:601:10: fatal error: cy_util.h: No such file or directory
#include "cy_util.h"
^~~~~~~~~~~
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
The text was updated successfully, but these errors were encountered:
Install seems to work fine when using
setup.py install
but for the pip procedure things are broken.First, it fails when numpy and cython arent found. There should be a way to mark numpy and cython as dependencies so that pip installs them automatically before trying to install cyvlfeat, since lots of other packages do this. Then there is a compile error:
The text was updated successfully, but these errors were encountered: