Como instalar o g ++ no Ubuntu 17.10?

1

Já experimentei sudo apt-get install g++ , mas enfrentei o seguinte erro:

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:  g++: Depends: g++-7
(>= 7.2.0-1~) but it is not going to be installed E: Unable to correct
problems, you have held broken packages.

Como devo corrigir isso?

    
por Arya Sadeghi 25.02.2018 / 08:42

1 resposta

1

experimente os seguintes comandos:

sudo apt-get install libc6=2.26-0ubuntu2
sudo apt-get install g++
    
por Athena 25.02.2018 / 10:37