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.
8 Answers
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-storein a terminal and then re-launching the app solved the problem without a reboot.
5If 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 existThen 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 5 The only thing that has worked so far is
gnome-software refreshBut 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.
If you're getting unresponsive search, try reinstalling the software center.
sudo apt reinstall gnome-software 1 All I did was use the command:
gnome-software refreshand it worked.
4I also freshly installed Ubuntu 20.04 and was having problems with Ubuntu Software.
Run
sudo apt install gnome-software 1 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 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 snapdThis installs the snap store using the package manager
sudo apt-get update
sudo snap install snap-store