1、从官网下载源代码
2、解压后,进入目录
3、编译
./bootstrap
make -j8
sudo make install
4、查看版本号:
$ cmake --version
cmake version 3.12.3
CMake suite maintained and supported by Kitware (kitware.com/cmake).
5、若不能使用cmake命令,编辑/etc/profile
文件,在最后一行加入环境变量:
export PATH=/usr/local/bin:$PATH
source /etc/profile
使配置生效