4

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?

David Foerster
  • 35,754
  • 55
  • 92
  • 145
Mike Williams
  • 51
  • 1
  • 2

1 Answers1

2

Run this command on your system:

sudo apt-get update && sudo apt-get -f install && sudo apt-get dist-upgrade 
Kaz Wolfe
  • 33,802
  • 20
  • 111
  • 168
Emma Marshall
  • 341
  • 1
  • 2
  • 2
  • Emma, have a look [here](https://meta.askubuntu.com/questions/17013/what-should-we-do-with-answers-that-include-contact-details-for-relevant-support), please? – Fabby Jun 09 '17 at 20:12