在 Ubuntu 上安装 GCC/G++ 10

在 Ubuntu 上安装 GCC/G++ 10

我正在尝试按照说明在我的计算机上安装 GCC 10这里。添加 PPA 后,我不断收到以下信息:

$ sudo apt-get update
Atteint :1 http://repo.mysql.com/apt/ubuntu bionic InRelease
Atteint :2 http://packages.microsoft.com/repos/vscode stable InRelease         
Atteint :3 https://packages.microsoft.com/ubuntu/19.10/prod eoan InRelease     
Atteint :4 https://packages.microsoft.com/repos/ms-teams stable InRelease      
Atteint :5 http://be.archive.ubuntu.com/ubuntu bionic InRelease                
Atteint :6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise InRelease
Atteint :7 http://dl.google.com/linux/chrome/deb stable InRelease              
Atteint :8 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease           
Atteint :9 http://be.archive.ubuntu.com/ubuntu bionic-updates InRelease        
Atteint :10 http://be.archive.ubuntu.com/ubuntu bionic-backports InRelease     
Atteint :11 http://ppa.launchpad.net/linuxgndu/sqlitebrowser/ubuntu bionic InRelease
Atteint :12 http://apt.insync.io/ubuntu bionic InRelease                       
Atteint :13 http://ppa.launchpad.net/lyx-devel/release/ubuntu bionic InRelease 
Atteint :14 http://security.ubuntu.com/ubuntu bionic-security InRelease        
Lecture des listes de paquets... Fait                          
$ sudo apt install gcc-10
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
E: Impossible de trouver le paquet gcc-10
$

虽然全是法语,但您可以在第 6 行看到已到达工具链 PPA。最后一行显示无法找到软件包 gcc-10。

请注意,我必须通过软件中心添加 PPA,否则sudo add-apt-repository ppa:ubuntu-toolchain-r/test终端就会挂起。

任何想法?

相关内容