Teererai Marange
Teererai Marange

Reputation: 2132

Ubuntu software center not loading

I have tried loading up the software center in order to install some packages but it doesn't seem to open. I tried entering the following command in terminal:

software-center

and get the following error:

bash: /usr/bin/software-center: /usr/bin/python: bad interpreter: Permission denied

Upvotes: 2

Views: 5066

Answers (6)

joana
joana

Reputation: 83

Ensure your system is up to date by running:

sudo apt-get update
sudo apt-get upgrade

Upvotes: 0

Ahtisham
Ahtisham

Reputation: 10126

I was able to open all snap sofwares (including the software center) by just restarting the snapd service like this:

sudo service snapd restart

Or

sudo systemctl restart snapd

Upvotes: 0

T0adMomo
T0adMomo

Reputation: 1

Using ubuntu 20.04 with default configurations means you should ignore answers prompting you to explore gnome-software adjustments. This version uses the snap-store to manage applications. This worked for me.

    $ killall snap-store
    $ snap-store

Upvotes: 0

Tife28
Tife28

Reputation: 29

Try this out, killall snap-store then relaunch the app

Upvotes: 2

Dinesh Penugonda
Dinesh Penugonda

Reputation: 121

Try this, worked for me sudo apt install gnome-software

Upvotes: 1

Teererai Marange
Teererai Marange

Reputation: 2132

Turns out some default package files for python were missing:

sudo apt-get -m --reinstall install python python-minimal dh-python
sudo apt-get -f install

Upvotes: 0

Related Questions