728x90
반응형

 

 

1. apt 를 이용한 설치 (구버전이 설치됨)

 

$ sudo apt install cmake

 

 

 

2. 직접 최신버전 설치

 

2.1 홈페이지에서 다운로드

https://cmake.org/download

 

Download | CMake

Current development distribution Each night binaries are created as part of the testing process. Other than passing all of the tests in CMake, this version of CMake should not be expected to work in a production environment. It is being produced so that us

cmake.org

2.2 wget 으로 다운로드

wget https://cmake.org/files/v3.16/cmake-3.16.2.tar.gz

 

2.3 압축풀기 및 설치

$ tar -xvzf 해당파일.tar.gz
$ cd 압축풀린폴더
$ ./bootstrap --prefix=/usr/local
$ make
$ make install

 

2.4 설치 확인

$ cmake --version

 

만약에 해당 명령어를 찾을 수 없다고 나오는 경우에는 

$ vi ~./bash_profile

 

아래와 같이 패스 수정

PATH=/usr/local/bin:$PATH:$HOME/bin

그 다음 ssh 를 재시작 하면 된다. 

 

 

 

 

 

 

 

 

 

 

 

참고자료 1 : https://tttsss77.tistory.com/77

 

리눅스에 CMake 설치하기

본 글에서는 리눅스에 CMake를 설치하는 방법을 소개한다. 현재 Ubuntu 리눅스를 사용하고 있는데, CMake를 설치하는 방법은 크게 두가지를 사용하고 있다. apt 와 같은 패키지 업데이트 유틸리티를 사용하는 방법..

tttsss77.tistory.com

 

 

참고자료 2 : https://blanche-star.tistory.com/entry/cmake-%EC%B5%9C%EC%8B%A0%EB%B2%84%EC%A0%84%EC%9C%BC%EB%A1%9C-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0

 

cmake 최신버전으로 설치하기.

이글을 찾는사람이라면 딱 2가지 경우일겁니다. minimal설치라서 cmake가 없거나 기존에 설치된 cmake로 설치진행시 낮은버전이니 최신버전으로 업그레이드 하라는 문구를 본사람일테죠. 0. 기존에 설치된 cmake를..

blanche-star.tistory.com

 

 

728x90
반응형