您的位置:首页 > 汽车 > 新车 > Ubuntu 20.04安装CMake 3.22.6版本

Ubuntu 20.04安装CMake 3.22.6版本

2025/8/29 14:15:25 来源:https://blog.csdn.net/nibiewuxuanze/article/details/139320372  浏览:    关键词:Ubuntu 20.04安装CMake 3.22.6版本

Ubuntu 20.04通过apt安装的cmake版本是3.16.3,默认安装到/usr/bin/cmake路径。

$ cmake Command 'cmake' not found, but can be installed with:sudo snap install cmake  # version 3.29.3, or
sudo apt  install cmake  # version 3.16.3-1ubuntu1.20.04.1See 'snap info cmake' for additional versions.

如果想安装其他版本,比如v3.22.6,可以到cmake的历史版本网页中下载。

Index of /files/v3.22icon-default.png?t=N7T8https://cmake.org/files/v3.22/下载路径:

https://cmake.org/files/v3.22/cmake-3.22.6-linux-x86_64.shicon-default.png?t=N7T8https://cmake.org/files/v3.22/cmake-3.22.6-linux-x86_64.sh

下面是在Ubuntu上的安装过程

# 创建目录
$ sudo mkdir /opt/cmake# 下载文件
$ cd /opt/cmake
$ sudo wget https://cmake.org/files/v3.22/cmake-3.22.6-linux-x86_64.sh
$ sudo chmod +x cmake-3.22.6-linux-x86_64.sh# 安装程序,期间要回复确认
$ sudo ./cmake-3.22.6-linux-x86_64.sh# 创建软连接
$ cd /usr/bin
$ sudo ln -s /opt/cmake/cmake-3.22.6-linux-x86_64/bin/cmake cmake

安装完成后,即可在任意路径执行cmake 

~$ cmake 
Usagecmake [options] <path-to-source>cmake [options] <path-to-existing-build>cmake [options] -S <path-to-source> -B <path-to-build>Specify a source directory to (re-)generate a build system for it in the
current working directory.  Specify an existing build directory to
re-generate its build system.Run 'cmake --help' for more information.

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com