1. 程式人生 > >ubuntu改變cmake版本

ubuntu改變cmake版本

sudo apt-get install build-essential

#http://www.cmake.org/files  這個網站裡面有cmake的所有版本的列表,下載對應的cmake版本
wget http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz
tar xf cmake-3.4.1.tar.gz
cd cmake-3.4.1
./configure
make
sudo apt-get install checkinstall
sudo checkinstall
sudo make install
最後在終端輸入:cmake --version

如果顯示cmake version 3.4.1

則安裝成功!