/usr/bin/ld: cannot find -lboost_python3
版本:Ubuntu20.04
python3.8
在安装caffe环境时遇到以下报错
在usr/lib/x86_64-linux-gnu中找到
在caffe目录下输入
nano Makefile.config
将其中的 PYTHON_LIBRARIES
原代码
PYTHON_LIBRARIES := boost_python3 python3.8
改为
PYTHON_LIBRARIES := boost_python38 python3.8
问题解决