5

When I want to install anything in Ubuntu Software Center I get this message :

software center error

belacqua
  • 23,120

1 Answers1

4

Try

sudo apt-get update

to update your package list. Then

sudo apt-get autoclean

to clean up any partial packages. Then

sudo apt-get clean

to clean up the apt cache.

sudo apt-get autoremove

will clean up any unneeded dependencies. If while doing this you can identify the broken package this code will very forcefully remove it.

sudo dpkg --remove -force --force-remove-reinstreq package name

Change package name to the real name of course.

Marco Ceppi
  • 48,101
Neo
  • 49