94

In my freshly installed Ubuntu 20.04 LTS, Ubuntu Software is not loading properly.

It is loading only Editor's Picks but nothing else. Installed tab is empty and search is not working as well. My internet connection is perfectly working and I am not using any firewall.

digiwizkid
  • 2,535

8 Answers8

177

On Ubuntu 20.04LTS the app called "Ubuntu software" is in reality snap-store (the terminal command running it is "snap-store", not "gnome-software"). Ubuntu 20.04 does not seem to come with gnome-software installed by default. For me, closing the app, then typing

killall snap-store

in a terminal and then re-launching the app solved the problem without a reboot.

Arnaud
  • 1,879
20

If all images and software aren't loading in the software app delete the ubuntu-reviews.db file at ~/.local/share/gnome-software/ubuntu-reviews.db. It will be recreated automatically the next time you open Ubuntu Software (the Software app). Open the terminal and type:

killall gnome-software
mkdir -p ~/.local/share/gnome-software/
cd ~/.local/share/gnome-software/
mv ubuntu-reviews.db ubuntu-reviews.db.bak # skip if ubuntu-reviews.db doesn't exist

Then reopen the Software app.

If it still doesn't work you could try reinstalling the Software app.

sudo apt update
sudo apt purge gnome-software
sudo apt install gnome-software
karel
  • 114,770
17

In Ubuntu 20.04, it is installed as a snap package named snap-store (not as debian package).

Reinstalling the snap package solved the issue for me. For me it wasn't opening at all.

snap remove snap-store
snap install snap-store
Deepak
  • 711
12

The only thing that has worked so far is

gnome-software refresh

But the terminal has to be kept open. Once it is closed, the apps disappear again.

Update: G. Koçmarlı has posted a working solution on Ubuntu software shows only editors picks 20.04.

Kulfy
  • 17,696
10

If you're getting unresponsive search, try reinstalling the software center.

sudo apt reinstall gnome-software
  • It says: Package gnome-software is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source – Tayyab Ferozi Jul 29 '21 at 07:54
9

All I did was use the command:

gnome-software refresh

and it worked.

Nmath
  • 12,333
Dave
  • 101
6

I also freshly installed Ubuntu 20.04 and was having problems with Ubuntu Software.

Run

sudo apt install gnome-software
  • I started testing the answers beginning from the simplest ones. This was the second answer tested and the one that worked for me. – Leonardo Castro Oct 28 '21 at 18:28
3

Instead of installing the gnome-software try:

(Ubuntu has this by default but still you may not have it)This installs the snapd package manager wich ubuntu software uses

sudo apt update
sudo apt install snapd

This installs the snap store using the package manager

sudo apt-get update
sudo snap install snap-store
jogarcia
  • 155