0

I was recently debugging qt installed on the latest ubuntu and during by debugging efforts I accidentally deleted qt5widgets.so . Now, I have no idea to how to recover it as I already re installed qt, checked for broken dependencies with apt get and checked the trash bin which was empty. I don't know what to do now rather than getting a fresh OS and doing it all from the beginning.

Thanks in advance,
Cents

1 Answers1

3

You can find out which package thinks it has qt5widgets.so with

dpkg -S qt5widgets.so

Then, force the reinstallation of that package with

sudo apt-get install --reinstall packagename
waltinator
  • 36,399