Update Pidgin using apt-get [duplicate]

Solution 1:

To update Pidgin to 2.10.7, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo add-apt-repository ppa:pidgin-developers/ppa
sudo apt-get update
sudo apt-get install pidgin

Solution 2:

Thanks to this answer by Peachy

sudo apt-get --only-upgrade install pidgin

Solution 3:

As man apt-get describes it, apt-get update will resynchronize the package index files from their sources while apt-get upgrade will install the newest versions of all packages currently installed on the system from the sources enumerated in your package list aforementioned.

As described in other answers, if you want a newest version than the one in standard packages of your distribution, you have to either edit your sources lists, add a new PPA, install from more recent binaries or compile from source.