Closed Joeman17 closed 4 years ago
CentOS.... I gave up on Centos, you have to build virtually everything from scratch and even then it didn't work for me and I am no Linux beginner. The only hint I can give you is that you can try to find installation instructions for BVLC caffe and centos, they apply equally to caffe_unet.
Obviously cblas is not found during linking, but since it was during build your configuration cannot be that wrong. Check your CMake cache to find out the full path to the library according to cmake configuration. If libcblas.so is at that location, I am completely lost otherwise set the path according to your library location. In the worst case (hacker's choice) hard code the path in the linker flags in CMakeLists.txt.
Thanks a lot for the hints. That helped. :) I solved the problem according to https://github.com/BVLC/caffe/issues/2348#issuecomment-202322649 by executing yum install protobuf-devel leveldb-devel snappy-devel opencv-devel boost-devel hdf5-devel gflags-devel glog-devel lmdb-devel protobuf-compiler atlas-devel seems like the missing opencv-devel package was causing the issue.
Hey, I am trying to install the frontend from source on centos 7 following the installation guide: https://lmb.informatik.uni-freiburg.de/resources/opensource/unet/
So far i did the following:
But at the last step (already 94% installed) I am getting the following error (full output attached): make_output.txt
It seems like there are some dependencies or links missing. Therefore I already tried using ldconfig but that didn't solve the problem.
Thanks a lot for helping. I hope someone has an idea. Greetings Joeman