I am trying to remove completely Boost 1.71
. I need to downgrade to a previous working library as from the version Boost 1.71
I am receiving 'boost::placeholders' has not been declared
so I want to downgrade to Boost 1.66
.
After typing on the terminal the ldconfig
I am left with only one instance:
emanuele@emanuele-pc:~$ ldconfig -p | grep libboost
libboost_thread.so.1.71.0 (libc6,x86-64) => /lib/x86_64-linux-gnu/libboost_thread.so.1.71.0
I tried to remove it using:
sudo rm -f /lib/x86_64-linux-gnu/libboost_*
sudo rm -rf /lib/x86_64-linux-gnu/libboost_*
But still the libboost_thread
is there..
So I tried accessing via sudo synaptic
and tried to remove it from there but received the following broken package
warning:
Therefore thinking that there was something broken I did:
sudo apt-get update --fix-missing
udo apt-get install -f
but nothing...the libboost_thread
is still there.
How do I make sure everything is fully removed?