ubuntu 安装最新版本cmake
直接 apt install 安装的是cmake 3.10.2,如果想安装最新版本需要自己前往 cmake 官方网址下载安装包,解压后安装。
# cmake 官方网址 :https://cmake.org/download/
# 以 3.23.3 版本为例子 使用https://github.91chi.fun加速下载
wget https://github.91chi.fun/https://github.com/Kitware/CMake/releases/download/v3.23.3/cmake-3.23.3.tar.gz
# 可能需要安装 openssl
apt-get install openssl
apt-get install libssl-dev
# 编译安装
./bootstrap
make -j8
make install
安装成功后查看版本:
cmake --version
# cmake version 3.23.3
# CMake suite maintained and supported by Kitware (kitware.com/cmake).