caffe安装错误



在fedora 21 上安装caffe时,我运行以下命令时遇到问题

make all

输出:

AR -o .build_release/lib/libcaffe.a
LD -o .build_release/lib/libcaffe.so
/usr/bin/ld: skipping incompatible /usr/lib/libleveldb.so when searching for -lleveldb
/usr/bin/ld: skipping incompatible /usr/lib/libleveldb.so when searching for -lleveldb
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../libleveldb.so when searching for -lleveldb
/usr/bin/ld: skipping incompatible /lib/libleveldb.so when searching for -lleveldb
/usr/bin/ld: skipping incompatible /usr/lib/libleveldb.so when searching for -lleveldb
/usr/bin/ld: cannot find -lleveldb
/usr/bin/ld: cannot find -lsnappy
/usr/bin/ld: cannot find -lcblas
/usr/bin/ld: cannot find -latlas
collect2: error: ld returned 1 exit status
Makefile:544: recipe for target '.build_release/lib/libcaffe.so' failed
make: *** [.build_release/lib/libcaffe.so] Error 1
[root@parags-pc caffe]# 

请帮忙!

我仍然无法摆脱最后两个(-lcblast和-latlas)错误。我早就安装了atlas和OpenBLAS。此外,我尝试了以下命令,但没有成功

echo "/usr/lib64/atlas" >/etc/ld.so.conf.d/atlas-x86_64.conf
ldconfig -v

需要一些投入!!

您的系统中存在的leveldb似乎是不同的体系结构,很可能是32位编译的leveldb和64位编译的caffe,反之亦然。

其余的库将在编译Caffe之前安装在Fedora中。

相关内容

最新更新