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
The building procedure in caffe-dilation is changed so that build_master_release/python is supposed to be included in PYTHONPATH instead of python/. In this way, if you are editing multiple branches in caffe and build them, their built python libraries will reside in the build directory instead of the original source directory to avoid multiple builds overriding each other.
As for your import question here, adding the path for libcaffe.so.1.0.0-rc3 to LD_LIBRARY_PATH should resolve the issue.
I could successfully compile caffe-dilation using:
make
make test
make runtest
After that i did:
make pycaffe
That leads to the following:
import error _caffe
I google it and found thats a common error for caffe-dilation. https://groups.google.com/forum/#!topic/caffe-users/yM-U_gx3vfY
And through the answer of "yuca" (copy _caffe.so from build_master_release/python/caffe to python/caffe) i could solve it.
Unfortunately, i get now following error:
ImportError: libcaffe.so.1.0.0-rc3: cannot open shared object file: No such file or directory
Could someone solve that issue? Thank you in advance!
The text was updated successfully, but these errors were encountered: