본문 바로가기

컴퓨터공학

리눅스에 CMake 설치하기

반응형
RuntimeError: CMake must be installed to build the following extensions:

코드 실행중 다음과 같은 오류가 떠서 CMake를 설치해주어야 했다.

 

sudo apt-get install cmake

위와 같이 바로 설치하려고 했으나 다음과 같은 오류가 발생하였다.

Package cmake is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

 

아래와 같이 업데이트를 진행하고 설치하면 설치가 잘 된다.

sudo apt-get update -y
sudo apt-get update
sudo apt-get install cmake

 

반응형