$ sudo apt remove --purge --auto-remove cmake
CMake에 필요한 패키지 설치
$ sudo apt-get update && sudo apt update
$ sudo apt install wget build-essential sudo
CMake 설치
$ wget https://github.com/Kitware/CMake/releases/tag/v3.19.7/cmake-3.19.7.tar.gz
$ tar zxf cmake-3.19.7.tar.gz
$ cd cmake-3.19.7
$ ./bootstrap --prefix=/usr
$ make
$ sudo make install
https://github.com/Kitware/CMake/releases/tag
위의 링크에서 원하는 버전을 찾아서 다운받을 수도 있다.
이 경우에는 다음의 과정으로 설치를 진행한다.
$ tar zxf cmake-3.19.7.tar.gz
$ cd cmake-3.19.7
$ ./bootstrap --prefix=/usr
$ make
$ sudo make install
$ cmake --version
우분투 VSCode CMake 사용하기 VSCode CMake for Ubuntu (0) | 2021.03.20 |
---|---|
Ubuntu VSCode 설치 (0) | 2021.03.20 |
WAMP 웹서버 설치하기 (0) | 2021.02.23 |
E: Could not get lock /var/lib/dpkg/lock-frontend 해결 (0) | 2021.02.05 |
[Ubuntu] SW 업데이트 서버 kakao로 변경 (0) | 2021.02.04 |