bash: cmake: command not found... Similar command is: 'make'
时间: 2023-10-08 07:10:52 浏览: 385
"cmake: command not found" 出现的原因有两个。一是因为未安装cmake,二是因为环境变量中缺少路径。解决这个问题有两种方法:
方法一:永久添加环境变量
1. 打开用户根目录下的 .bash_profile 文件,如果没有该文件则需要创建。
2. 在 .bash_profile 文件的末尾添加以下代码:
export CMAKE_ROOT=/Applications/CMake.app/Contents/bin/
export PATH=$CMAKE_ROOT:$PATH
3. 更新 .bash_profile:执行命令 source .bash_profile
方法二:暂时添加环境变量
1. 打开终端,并执行以下命令:
export CMAKE_ROOT=/Applications/CMake.app/Contents/bin/
export PATH=$CMAKE_ROOT:$PATH
2. 这样,你就可以在当前终端会话中使用 cmake 命令了。但如果关闭终端,这些环境变量将不再生效。
所以,当你看到 "bash: cmake: command not found" 错误时,可以执行上述方法来解决问题。类似的命令是 "make"。
相关问题
bash: g: command not found...
This error message indicates that the command "g" is not recognized by the Bash shell. This may be because the command is not installed on the system or the command is not in the system's PATH variable. Check to make sure the command is installed and try running it with the full path or adding the directory containing the command to the PATH variable.
-bash: cmake: command not found
您遇到的错误提示是因为系统中没有安装 cmake。cmake 是一个用于管理和构建 C++ 程序的工具。您可以通过以下步骤在 Linux 系统上安装 cmake:
1. 打开终端,并使用以下命令更新软件包列表:
```
sudo apt update
```
2. 安装 cmake:
```
sudo apt install cmake
```
3. 输入您的密码并按下 Enter 键确认安装。
完成上述步骤后,您应该能够成功安装 cmake,并且可以在终端中运行 cmake 命令了。
阅读全文