I am trying to uninstall Viber but I can't. This is what happens:
$ sudo apt-get remove viber
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: The package viber needs to be reinstalled, but I can't find an archive for it.
How can I uninstall Viber successfully?
where viber
? [Edit] your question with it – M. Becerra Apr 02 '17 at 11:00dpkg -s viber | grep -i ^status
? Try adding thepurge
option.sudo apt-get remove --purge viber
– fugitive Apr 02 '17 at 11:33