3

I cannot open Software & Updates, either by going to Activities, and clicking on the Software & Updates icon, or trying to open it from the terminal with the command:

software-properties-gtk

I have also tried reinstalling:

sudo apt-get install --reinstall software-properties-gtk

After the re-installation, it either doesn't open, or, if it does, it just shows an empty white screen. What is the problem here?

I am running Ubuntu 20.04.

Ollie
  • 2,932

3 Answers3

2

I had the same problem and sudo software-properties-gtk did not solve it.

However, as suggested by this answer in Ask Ubuntu the following command solved it:

sudo apt-get update && sudo apt-get install --reinstall python3-six python3-certifi
Kulfy
  • 17,696
huzaiq
  • 21
  • 3
1

I've figured it out! Apparently, I needed to run the software-properties-gtk command with root privileges, like

sudo software-properties-gtk

And now everything works just fine. Also running `

sudo journalctl -f

and then launching the app worked well too.

Ollie
  • 2,932
0

For me, this stopped working when I changed the update-alternatives --config python3 to python 3.7 from the system installed python 3.8.

Changing this back via the command above and instantly I was able to launch software updates.

m_a
  • 11