Nie można zainstalować programu build-essential na Ubuntu 16.04 [zamknięte]

0

Próbuję zainstalować pakiet niezbędny do kompilacji na Ubuntu 16.04 (Xenial Xerus), ale występuje problem z zależnością.

root@server:~# apt-get install build-essential
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 build-essential : Depends: libc6-dev but it is not going to be installed or
                            libc-dev
                   Depends: gcc (>= 4:5.2) but it is not going to be installed
                   Depends: g++ (>= 4:5.2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

a kiedy próbowałem

root@server:~# apt-get install libc6-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libc6-dev : Depends: libc6 (= 2.23-0ubuntu2) but 2.23-0ubuntu3 is to be installed
E: Unable to correct problems, you have held broken packages.

i również;

root@server:~# apt-cache policy libc6-dev
libc6-dev:
  Installed: (none)
  Candidate: 2.23-0ubuntu2
  Version table:
     2.23-0ubuntu2 500
        500 http://tr.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

root@server:~# apt-cache policy gcc
gcc:
  Installed: (none)
  Candidate: 4:5.3.1-1ubuntu1
  Version table:
     4:5.3.1-1ubuntu1 500
        500 http://tr.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

root@server:~# apt-cache policy g++
g++:
  Installed: (none)
  Candidate: 4:5.3.1-1ubuntu1
  Version table:
     4:5.3.1-1ubuntu1 500
        500 http://tr.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
ecabuk
źródło
Czy wypróbowałeś rozwiązania askubuntu.com/questions/223237/...
Ron
@Ron tak, próbowałem, ale bez powodzenia. Ponownie zainstalowałem system operacyjny, ale tym razem zainstalowałem build-essentialpierwszy, teraz działa bez problemu.
ecabuk
Wygląda na to, że niektóre indeksy pakietów są po prostu nieaktualne. Uruchom sudo apt-get updatei spróbuj ponownie. Jeśli to spowoduje błąd i problem będzie się powtarzał, zgłoś się.
David Foerster
1
Ten sam problem wystąpił w przypadku repozytoriów w Tajlandii. Problem został rozwiązany poprzez zmianę repozytorium z powrotem na główne repozytorium Ubuntu.
Bhoom Suktitipat

Odpowiedzi:

1

libc6-dev: Zależy: libc6 (= 2.23-0ubuntu2), ale 2.23-0ubuntu3 ma zostać zainstalowany

libc6 i libc6-dev muszą być w tej samej wersji, ale wersja libc6-dev znaleziona w mirrorach apt jest skonfigurowana do użycia, jest starsza niż wersja libc6 w twoim systemie i zwykle nie obniża pakietów.

W tym przypadku wygląda na to, że twój problem jest bardzo nieaktualnym kopią lustrzaną (2.23-0ubuntu3 jest już na xenial od ponad tygodnia). Sugerowałbym zmianę twojego źródła.list, aby wskazać inne lustro.

Możesz również napotkać ten problem, gdy ktoś zmieni plik sources.list na nowszą wersję, zainstaluje pewne rzeczy i zmieni je z powrotem, ale w takim przypadku zwykle zauważysz większą różnicę wersji.

Peter Green
źródło