1. apt 를 이용한 설치 (구버전이 설치됨)
$ sudo apt install cmake
2. 직접 최신버전 설치
2.1 홈페이지에서 다운로드
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
cmake 최신버전으로 설치하기.
이글을 찾는사람이라면 딱 2가지 경우일겁니다. minimal설치라서 cmake가 없거나 기존에 설치된 cmake로 설치진행시 낮은버전이니 최신버전으로 업그레이드 하라는 문구를 본사람일테죠. 0. 기존에 설치된 cmake를..
blanche-star.tistory.com
'Programming > Etc.' 카테고리의 다른 글
[Video] ffmpeg, ffplay 및 vlc 간단 사용법 (0) | 2020.10.20 |
---|---|
[CMake] Ubuntu 환경에서 CMakeLists.txt 생성하기 위한 참고자료들 (0) | 2020.06.17 |
[git] git push 안될 때 (2) | 2020.01.17 |
[JSON] JSON 파일 뷰어 (0) | 2019.08.02 |
[Docker] docker 자주 쓰는 명령어 정리 (0) | 2019.06.15 |