I bought a System76 laptop. However, every time I try to install something, I get this error (or something similar):
mike@mike-Lemur:~$ sudo apt-get install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
curl is already the newest version (7.47.0-1ubuntu2.2).
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libgcc1:i386 : Depends: libc6:i386 (>= 2.2.4) but it is not going to be installed
libgcrypt20:i386 : Depends: libc6:i386 (>= 2.15) but it is not going to be installed
libgpg-error0:i386 : Depends: libc6:i386 (>= 2.15) but it is not going to be installed
liblzma5:i386 : Depends: libc6:i386 (>= 2.4) but it is not going to be installed
libpcre3:i386 : Depends: libc6:i386 (>= 2.4) but it is not going to be installed
libselinux1:i386 : Depends: libc6:i386 (>= 2.8) 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 fix this issue?
Try 'apt-get -f install'
Have you tried that yet ? – Sergiy Kolodyazhnyy May 30 '17 at 18:58sudo
, that's why it says permission denied – Sergiy Kolodyazhnyy May 30 '17 at 19:23sudo apt-get update && sudo apt-get -f install && sudo apt-get upgrade
– Panther May 30 '17 at 19:24