Ubuntu14.04安装CMake3.4.1

前端之家收集整理的这篇文章主要介绍了Ubuntu14.04安装CMake3.4.1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于Ubuntu14.04的cmake版本为2.8.x,而如果需要cmake3.x版本时,无法生成makefile,有两种方法可以安装cmake3.4.1:

方法1:


最后在终端输入:cmake --version如果显示cmake version 3.4.1则安装成功!sudo apt-get install software-properties-common
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get install cmake
sudo apt-get upgrade

方法2:sudo apt-get install build-essential
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
makesudo apt-get install checkinstall
sudo checkinstallsudo make install
原文链接:https://www.f2er.com/ubuntu/350780.html

猜你在找的Ubuntu相关文章