빨간색 에러들

[Ubuntu]“No Installation Candidate” when trying to install gcc

vhxpffltm 2021. 9. 30. 21:33

GCC 5 버전을 설치하기 위한 후보가 없다는 에러이다.

 

먼저, 우분투 버전의 문제로 20.04는 기본적으로 GCC 9 버전을 default로 해준다.

 

GCC 5버전은  xenial의 저장소에 있으며 16.04의 저장소를 임시로 사용하여 설치할 수 있다.

 

 

1
2
3
4
5
6
7
// etc/apt/source.list
deb http://dk.archive.ubuntu.com/ubuntu/ xenial main
deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe
 
 
$ sudo apt update
$ sudo apt install g++-5 gcc-5
cs

 

 

https://askubuntu.com/questions/1235819/ubuntu-20-04-gcc-version-lower-than-gcc-7

 

Ubuntu 20.04 - gcc version lower than gcc-7

I recently upgraded my Ubuntu version to the latest 20.04 release. Some of my earlier projects (developed on 16.04) were compiling just fine with a gcc version of 5 (gcc-5.4.0). The default version...

askubuntu.com