0

I'm new to Linux. I installed Steam on my desktop, but it doesn't work. It says that the following information may help to resolve this issue

The following packages have unmet dependencies: libgl1-mesa-glx:i386 (=10 1.3-0ubuntu0.5) unable to correct problems, you may have broken packages."

How do I fix this?
Thanks!

tomodachi
  • 14,832

1 Answers1

1

Do this.

Open up a terminal by pressing Ctrl + Alt + T

and Remove steam by typing in this command

sudo apt-get remove --purge steam

Download and install steam off the site: Run these commands.

wget http://repo.steampowered.com/steam/archive/precise/steam_latest.deb

then install it.

sudo dpkg -i steam_latest.deb

then run steam in terminal

steam

and steam should start. You don't have to start steam by the command line its just for diagnostics.

Neil
  • 4,475
  • 3
  • 22
  • 34