I installed an application using Personal Package Archives (PPA). I installed the application by adding the "unstable" PPA, and now I want to switch to the "stable" PPA. So I removed the "unstable" PPA, and added the "stable" PPA. After doing the apt-get update/upgrade, it didn't detect a change, and the application is not getting reinstalled to the "stable" PPA.
How do I trigger apt-get to re-do the install?
apt-cache policy application-name
. Check whether what is offered in the unstable ppa is the same version as installed. If it is the same version, you might wanna stick with this one; if it is not, purge the application, and try to install the newer one. – Sergiy Kolodyazhnyy Dec 10 '15 at 06:14ppa-purge
(and not just remove) all the PPAs... – Rmano Dec 10 '15 at 08:41