RedisLabsModules / redisml

Machine Learning Model Server
http://redisml.io
Other
305 stars 44 forks source link

Can' build REDIS ML #6

Closed mccstan closed 7 years ago

mccstan commented 7 years ago

This what i get when trying to build on Cent OS 7. I instaled the package atlas-devel

$ make
ld -o redis-ml.so redis-ml.o rmalloc.o forest.o forest-type.o feature-vec.o reg.o regression-type.o matrix.o matrix-type.o util/logging.o util/thpool.o -shared -Bsymbolic -l:libcblas.a -l:libatlas.a  -Lrmutil -lrmutil -lc 
ld: ne peut trouver -l:libcblas.a
ld: ne peut trouver -l:libatlas.a
make: *** [redis-ml.so] Erreur 1
shaynativ commented 7 years ago

Try this:

$ yum install -y atlas-static
$ ln -s /usr/lib64/atlas/libatlas.a /usr/lib64/libatlas.a 
$ ln -s /usr/lib64/atlas/libtatlas.so /usr/lib64/libcblas.a 
mccstan commented 7 years ago

Thank you ! That worked fine !