Say I want to install Codeblocks(C/C++ IDE) using Ubuntu Software centre. But, if I do that I will install version 10, when I can have version 12 if I download package from Codeblocks website. The same happens with Eclipse. Ubuntu software centre has version 3.x and I can have 4.x from Eclipse website.
Question is why ubuntu software centre doesn't have the latest version of a software? Is this the lack of interest of developers, not to update their latest release on ubuntu software centre? or something else?
apt-cache search codeblocks
on my PC and got back the program you're looking at. There's no need for a PPA. I'm running Ubuntu 12.04. – japzone Apr 01 '13 at 17:11apt-cache search codeblocks
that you have codeblocks version 12? I had version 10 before I added the PPA. – Quazi Irfan Apr 03 '13 at 01:17sudo apt-add-repository ppa:pasgui/ppa
and then runsudo apt-get update; sudo apt-get install codeblock
. From now on you'll be sure to have the latest. – japzone Apr 03 '13 at 03:11