Ubuntu Software is not installing or updating anything. (16.04.1) [duplicate]
When I try to install something via a .deb file or just from software center it will say installing for a second or so then go back to the button saying install. When I try to update the software I have installed it just shows the installing sign but doesn't update, I left it running over night but still nothing updated
Picture of me trying to update:
2 Answers
First, fix your dependencies. To do this, open a terminal and enter this command:
sudo apt-get install -fAfter that, update your software:
sudo apt-get update && sudo apt-get dist-upgradeDon't use the application Ubuntu Software. The scientific term for it is "complete and utter garbage with tons of bugs which doesn't work 90% of the time and shouldn't be used by anyone for any purpose whatsoever". If you want to use a graphical interface, use Ubuntu Software Center. You can install it with this command:
sudo apt-get install software-centerIt's a bit slower but it works and gets the job done.
If you want to install a Debian package, you can either open it with Ubuntu Software Center or you can install it on the command line (assuming the package is in your downloads folder):
sudo apt-get install ~/Downloads/thepackage.debNote that you probably can install the Debian package directly from the repos without first downloading it. If your Debian package is called Awesome-Application_1.37_amd64.deb, try this command:
sudo apt-get install awesome-applicationIt either finds something with that name or tells you that it can't find it. In the latter case, execute the command mentioned two above to install the package you downloaded.
1In Ubuntu 16 I highly recommend installing GDebi package installer from the Ubuntu Software Center. Then open any downloaded .deb files with that. It will automatically install dependencies.
1