本文主要是介绍CentOS报错/bin/sh: autoconf: command not found,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、问题描述
- 二、解决方法
- 1.查看 autoconf、automake 是否已安装
- 2.查看 autoconf、automake 对应的包
- 3.安装
一、问题描述
CentOS 7 下执行 make configure 命令时报错:
/bin/sh: autoconf: command not found
二、解决方法
1.查看 autoconf、automake 是否已安装
rpm -qa|grep autoconf
rpm -qa|grep automake
2.查看 autoconf、automake 对应的包
yum whatprovides autoconf automake
[root@server-c00ef8c3-710d-4708-9cde-2c864e7c03e2 git-2.35.1]# yum whatprovides autoconf automake
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
autoconf-2.69-11.el7.noarch : A GNU tool for automatically configuring source code
Repo : base
automake-1.13.4-3.el7.noarch : A GNU tool for automatically creating Makefiles
Repo : base
3.安装
yum -y install autoconf-2.69-11.el7.noarch
yum -y install automake-1.13.4-3.el7.noarch
这篇关于CentOS报错/bin/sh: autoconf: command not found的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!