Reputation: 117
I want to install gattlib
. When i tried to install gattlib
, there is a line x86_64-linux-gnu-g++ -lboost_python-py34
, but i have _python_py36
,so i get error /usr/bin/ld: cannot find -lboost_python-py34
. How can i fix it?
Upvotes: 1
Views: 1387
Reputation:
As shown here, it looks like you need to make a link by the following command:
sudo ln -s libboost_python-py36.so libboost_python3.so
Upvotes: 4