Closed nguyenlam185 closed 1 year ago
You can try debugging this program to find out where the error is. Usually, it is caused by a file configuration error, or a problem with lfs.
@hopef Thanks for your suggestion. I have tried debugging and find out that the problem may come from the protobuf library. Do I have to use a specific version of protobuf? or just go with the latest one? My environment now installed with protobuf v3.21.12
libprotobuf-dev == 3.6.1
thank you so much @hopef It now works well with protobuf v3.6.1
hi, how do you fix this problem , i try to compile the protobuf v3.6.1 ,but it can't to solve problem .do you apt to install protobuf? I can't install success
@hunagjingwei I built protobuf from source
git clone https://github.com/protocolbuffers/protobuf.git
cd protobuf
git checkout v3.6.1
git submodule update --init --recursive
./autogen.sh
./configure
make -j$(nproc)
make -j$(nproc) check
sudo make install
I am trying build the BEVFusion base on the guidelines in README.md. Everythings seem find until the Compiling process has finished, the
bevfusion
cannot run. Could anybody please give me some clues to get it work?