Reputation: 2132
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
Reputation: 83
Ensure your system is up to date by running:
sudo apt-get update
sudo apt-get upgrade
Upvotes: 0
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
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
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