Fresh, successful Caffe installation on Ubuntu 16.04. Caffe was compiled on the system for CPU-only operation. LMDB version 0.9.17-3 is installed as well. Everything is very 'vanilla'.
To double check everything, I followed the MNIST installation instructions:
cd $CAFFE_ROOT
./data/mnist/get_mnist.sh
./examples/mnist/create_mnist.sh
The third script is the one that generated the aforementioned error. Does anyone know the cause?
me too
Do you use windows WSL??
I got same error in my WSL .
But when i use same command and same script run in my ubuntu server,no errors happend.
Do you use windows WSL??
I got same error in my WSL .
But when i use same command and same script run in my ubuntu server,no errors happend.
I meet the same problem with WSL
Do you use windows WSL??
I got same error in my WSL .
But when i use same command and same script run in my ubuntu server,no errors happend.I meet the same problem with WSL
if u use wsl,the error is make by wsl,i was sure that
I found a method to solve this,
$CAFFE_ROOT/include/caffe/util/db_lmdb.hpp ,CHECK_EQ(mdb_status, MDB_SUCCESS) << mdb_strerror(mdb_status);$CAFFE_ROOT, remake caffe by make -j
By the way, you can run make test && make runtest to test if caffe works.
I found a method to solve this,
- you can vim the file
$CAFFE_ROOT/include/caffe/util/db_lmdb.hpp,- comment out the line
CHECK_EQ(mdb_status, MDB_SUCCESS) << mdb_strerror(mdb_status);- return to the
$CAFFE_ROOT, remake caffe bymake -j
By the way, you can run
make test && make runtestto test if caffe works.
it works! thank you!
Most helpful comment
if u use wsl,the error is make by wsl,i was sure that