Ubuntu 14.04 更新cmake版本到3.2

ubuntu14.04的默认cmake版本是2.8,而我在clion中使用的需要是cmake3.2,需要将cmake升级到3.2。

具体的步骤如下:

通过PPA安装

sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update

如果你从来没装过cmake

sudo apt-get install cmake

如果你装过cmake

sudo apt-get upgrade

安装完后,用命令:cmake --version 查看当前的cmake版本,可以看到现在cmake的版本为3.2.2


如果你想自己编译安装,步骤如下:

sudo apt-get install build-essential
wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar xf cmake-3.2.2.tar.gz
cd cmake-3.2.2
./configure
make

sudo apt-get install checkinstall
sudo checkinstall
sudo make install

我使用的是第一个方法,对于第二个方法,我也不是特别了解,如有疑问可以参考http://askubuntu.com/questions/610291/how-to-install-cmake-3-2-on-ubuntu-14-04

你可能感兴趣的:(Ubuntu 14.04 更新cmake版本到3.2)