• cmake安装更新


    ubuntu16.04在安装libfreenect过程中,出现cmake报错:CMake 3.8 or higher is required. You are running version 3.5.1
    cmake3.5.1是在安装ubuntu系统时安装的默认版本,需要自行下载cmake更高版本进行安装。

    1. 查看当前版本
    cmake --version
    
    • 1
    1. 卸载cmake(安装ros时可跳过)
    sudo apt remove cmake
    
    • 1

    注:再此步骤中,由于我安装了ros系统,提示会卸载许多与ros相关的cmake文件,可能会导致ros无法使用,所以跳过此步。

    1. 下载更高版本cmake,可在cmake官网下载,我下载的是cmake-3.16.8.tar.gz

    2. 安装cmake

    • 将cmake-3.16.8.tar.gz解压并提取出来

    • 由于安装了ros跳过了第二步,所以先找到cmake路径,将原来版本的cmake执行文件删除

    which cmake
    cd /usr/bin/
    sudo rm cmake
    
    • 1
    • 2
    • 3
    • 将cmake-3.16.8.tar.gz提取出来并安装
    cd cmake-3.16.8
    ./configure
    make
    sudo make install
    cmake --version
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 安装成功后显示如下
      在这里插入图片描述

    可能出现的错误及解决方案:

    错误1: 在./configure时出现报错:

    Error when bootstrapping CMake:
    Cannot find appropriate Makefile processor on this system.
    Please specify one using environment variable MAKE.
    

    提示找不到make。

    • 解决方案:
    sudo apt-get install make
    

    继续运行其他安装步骤

    错误2: 在./configure时出现报错:

    CMake Error at Utilities/cmcurl/CMakeLists.txt:454 (message):
      Could not find OpenSSL.  Install an OpenSSL development package or
      configure CMake with -DCMAKE_USE_OPENSSL=OFF to build without OpenSSL.
      
    Error when bootstrapping CMake:
    Problem while running initial CMake
    

    提示找不到OpenSSL,查看错误日志,缺少软件包。

    • 解决方案:
    sudo apt-get install libssl-dev
    

    继续运行其他安装步骤

    参考链接:
    https://blog.csdn.net/qq_35398033/article/details/106457777
    http://www.bubuko.com/infodetail-3504829.html

    作者:柒月
    Q群 :2122210(嵌入式/机器学习)
  • 相关阅读:
    HTTP协议详解
    10本Linux免费电子书
    面试高级算法梳理笔记
    Linux服务器的那些性能参数指标
    2016 年开发者头条十大文章系列
    程序员如何优雅的挣零花钱
    [oracle] oracle权限传递
    [oracle] 两种权限:系统权限VS对象权限
    [oracle] 系统权限管理
    [oracle] 重要服务启动与停止命令行
  • 原文地址:https://www.cnblogs.com/Ph-one/p/14371460.html
Copyright © 2020-2023  润新知