23

I am a new user of Ubuntu and I use Ubuntu 16.04 LTS version. My problem is that I can not open software center. It can open before. After updating and installing some applications, can't open the software center.

5 Answers5

5

I was also facing this same problem; I followed these steps to fixed it:-

To uninstall Software Center:

sudo apt-get remove software-center
sudo apt-get autoremove software-center

To re-install Software Center:

sudo apt-get update
sudo apt-get install software-center

Thank you Mohamed Slama for askubuntu.com/a/133473/464430

3

Rename or remove the ~/.local/share/gnome-software. In the steps below it's removed and will be recreated when you start gnome-software. It currently has a list of what has been installed.

The first line will ensure the locked up instances are removed from memory. It might not be necessary.

$ killall gnome-software
$ rm -r ~/.local/share/gnome-software

Then it should enable to open software-center from dash or with gnome-software from terminal.

Ref: here

pranphy
  • 1,668
3

Similar problem happened to me after I installed 16.04.1 LTS and updated software with Software Updater in it. When I tried to install new software from *.deb file, the Ubuntu Software opened and then exited quickly. I found the answer here. Actually I just tried to

sudo apt-get update

in terminal. Then Ubuntu Software worked. I don't know why.

zx485
  • 2,865
2

Try to install the candidate version. It worked for me.

First, remove the snap-store. It also removes your Software Center.

snap remove snap-store

then install the candidate version

snap install snap-store --candidate

enter image description here

or, you can use another alternative, Gnome Software

sudo apt install gnome-software

enter image description here

0

Maybe the software center is not installed. Try to install it manually:

sudo apt install software-center
Thomas W.
  • 540