0

Below are the results of trying to install Steam in 16.10.

sudo apt-get install steam
[sudo] password for micah:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 gcc-5-multilib : Depends: libc6-dev-i386 (>= 2.11) but it is not going to be installed
 libc6-dev-x32 : Depends: libc6-dev-i386 (= 2.23-0ubuntu5) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

How do I solve these unmet dependencies?

Zanna
  • 69,223
  • 56
  • 216
  • 327
  • 3
    Please explain in words what the problem is, what triggered it, what are trying to install, etc. and please do not use screenshots for error messages. –  Jan 17 '17 at 02:24
  • 1
    Possible duplicate of [How can I install Steam?](http://askubuntu.com/questions/1784/how-can-i-install-steam) – David Foerster Jan 17 '17 at 13:55

2 Answers2

4

Steam has two i386 architecture unmet dependency packages depending on GNU C Library: 32-bit development libraries for AMD64 (libc6-dev-i386). To correct the unmet dependencies, open the terminal and type:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get -f install  
sudo apt-get install steam
karel
  • 110,292
  • 102
  • 269
  • 299
-2

Try running this command:

apt-get --fix-broken install

This attempts to fix broken dependencies. (--fix-broken is the same as -f.)

Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493