-bash: make: command not found
时间: 2024-01-12 15:04:06 浏览: 231
解决bash: mysql: command not found 的方法
根据提供的引用内容,当出现"-bash: make: command not found"错误时,可以通过安装make命令来解决。可以使用以下命令来安装make:
```shell
yum -y install gcc automake autoconf libtool make
```
这个命令将会安装gcc、automake、autoconf、libtool和make等必要的软件包,以便在系统中使用make命令。
阅读全文