Reputation: 1
sudo apt install tasksel
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: The package libopencv-video2.4v5 needs to be reinstalled, but I can't find an archive for it.
Upvotes: 0
Views: 41
Reputation:
I'd recommend : sudo dpkg --remove --force-all libopencv-video* && sudo apt-get update
Also you could try :
apt-get -f install
apt-get autoremove
apt-get purge libopencv-video*
apt-get purge
apt-get clean
if apt didn't work you can also manually download .deb file and install it using dpkg -i file.deb
Upvotes: 0