Xilinx / ml-suite

Getting Started with Xilinx ML Suite
https://aws.amazon.com/marketplace/pp/B077FM2JNS
Other
335 stars 152 forks source link

undefined symbol: _ZN7leveldb2DB4OpenERKNS_7OptionsERKSsPPS0_ #68

Open eerobert opened 5 years ago

eerobert commented 5 years ago

Clean install v1.3 And after create ml-suite conda envrionment, when running python -c "import caffe" it reports the above error. Any comments?

anjn commented 5 years ago

Try this. It seems the dependency is broken inside Anaconda now.

conda activate ml-suite
conda install --no-deps leveldb=1.20=h00d4201_1 -c conda-forge
conda install --no-deps glog=0.3.5=hfc679d8_1 -c conda-forge
wilderfield commented 5 years ago

Yes, someone in the Anaconda world broke us. We will have to work on a solid work around.

Another used did this:

conda install -c defaults protobuf libprotobuf

eerobert commented 5 years ago

Thanks anjn, it works

wilderfield commented 5 years ago

I’ve reopened this in hopes that new users see this sooner vs later.

srohit0 commented 5 years ago

`conda activate ml-suite;

conda install --no-deps leveldb=1.20=h00d4201_1 -c conda-forge;

conda install --no-deps glog=0.3.5=hfc679d8_1 -c conda-forge`

It worked on nimbix alveo u200. Thanks @anjn !