ubuntu中cmake版本升级

Posted passedbylove

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu中cmake版本升级相关的知识,希望对你有一定的参考价值。

在网上下载一个项目,编译提示版本太低

CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
CMake 3.9 or higher is required. You are running version 3.5.1

 

编译方式安装(需要openssl)

apt remove cmake
cd /usr/src
wget https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0.tar.gz
tar -zxvf cmake-3.16.0.tar.gz
cd cmake-3.16.0
apt install libssl-dev build-essential

./bootstrap && make && sudo make install

 

ubuntu中cmake版本升级_github

ubuntu中cmake版本升级_ubuntu_02

 

 

ubuntu中cmake版本升级_github_03

 

 

结束后退出shell重新登录,即可安装成功 

sh安装包安装方法:​​https://askubuntu.com/questions/829310/how-to-upgrade-cmake-in-ubuntu​

 

2020-1-13更新:

wget下载比较慢,各位看官可以使用多线程下载软件,比如迅雷/IDM下载完成再上传到服务器。或者使用axel多线程下载。

axel安装及使用方法

apt install axel
axel -n 100 https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0.tar.gz

 

以上是关于ubuntu中cmake版本升级的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu下升级CMake

ubuntu 系统升级 cmake

如何在Ubuntu中升级或者安装cmake

如何在Ubuntu中升级或者安装cmake

Ubuntu14.04默认cmake升级为3.x

Ubuntu18.04进行cmake升级