I add a PPA but the software does not show up in Ubuntu 11.10 updates nor Software Centre

11,403

Solution 1

From my experience there are 3 reasons why it would not immediately show up in the repositories of Synaptic or Software Center:

  1. You added the PPA, did the repo update and immediately went to Synaptic or Software Center to see it. For some reason, it takes a little more time for the package managers to reflect on the new changes. In Synaptic for example I can see the "Refreshing Cache" option in the search box when I add a PPA and go straight to it. I have to actually wait for the refresh to finish to see the package. If I go look for it it will not show up. Same goes with Software Center, doing an apt-get update does not make the package manager show in that instant the new package you want.

  2. The PPA shows the package but you still can not see it in your package manager. This happens when the package has just been added to the PPA. For example, in my case when I updated the Wine PPA, the 1.4 was there for a whole day but I could not update to it until the next morning. For what I know, launchpad needs some time to get a package ready for download after it has been summited.

  3. Cache problems. This can be quickly solved by just rebooting the PC. It happens when you are like me and don't need to reboot the PC because.. well because is Ubuntu, I can go on for days ^^. But in general is good to reboot after doing update after update of stuff.

Hope this helps.

Solution 2

When your adding a PPA you not only have to type the repository followed by update you need to add the package you apt name.

EXAMPLE PPA;

sudo add-apt-repository ppa:simonschneegans/testing
sudo apt-get update
sudo apt-get install gnome-pie

As you can see the last line is the name of the package I want "gnome-pie". If you can find the name of the package then you can install it.

Share:
11,403

Related videos on Youtube

dunderhead
Author by

dunderhead

Updated on September 18, 2022

Comments

  • dunderhead
    dunderhead almost 2 years

    Every time I add a PPA I cannot see the package I'm trying to install. I suppose I must be doing something wrong! So here's my latest effort:

    In a Terminal I typed:

    sudo add-apt-repository ppa:jeromerobert/misc
    

    and that seemed to work correctly

    Then I typed:

    sudo apt-get update
    

    But when I go to Synaptic or Software Center the application I want to install is not there. Could someone please tell me what I'm doing wrong?

    • Uri Herrera
      Uri Herrera over 12 years
      Does the PPA have packages for your version...?
    • Sabacon
      Sabacon over 12 years
      try a search with: apt-cache search packagename
    • dsaint
      dsaint over 12 years
      I just visit the ppa:jeromerobert/misc launchpad and it has a package for your version, you should try searching the package name. In addition to Sabacon comment you can also try "aptitude search package_name" if you have aptitude installed.
    • Marky
      Marky over 12 years
      This is a USC "bug". One that I have noticed since 11.04. I am not sure if this behavior was already on 10.04 and 10.10, but I have highly noticed this starting with 11.04. What I have observed is when I add the PPA, update the source and install the particular software by hand (through console), the software can then be seen on USC, along with the other list of software in the PPA not installed on my system. This has happened often to me that whenever I add a PPA, I have to do everything by hand at first and later on I can just install/uninstall software from that PPA through USC.
    • dunderhead
      dunderhead over 12 years
      Thanks to everyone for their advice. I restarted my computer and then the package showed up in Synaptic! (To avoid confusion the following comment is intended as light humour: It's just like updating software on Windows!) This delay in Synaptic et al recognising PPAs seems to be happening with every ppa I add
    • Sabacon
      Sabacon over 12 years
      @dunderhead, This is why I asked you to do a search with apt-cache, if you did, it likely would have found the application and then we would advise you to install using apt-get install package-name, this is something that happens sometimes, it is essential that you respond to comments in a timely way, anyway glad you are OK now:)