configure: error: cannot find install-sh, install.sh, or shtool in confdb "."/confdb
时间: 2023-05-19 21:03:33 浏览: 263
这是一个编译错误,可能是因为缺少必要的文件或者路径不正确。您可以尝试检查confdb目录下是否存在install-sh、install.sh或shtool文件,或者检查路径是否正确。如果仍然无法解决问题,您可以尝试重新下载或安装相关软件包。
相关问题
configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
引用\[1\]:在安装软件时,如果出现configure报错"cannot find install-sh, install.sh, or shtool in ac-aux",可以尝试以下解决方法:首先,在Ubuntu系统上执行以下命令安装必要的软件包:sudo apt-get install automake autoconf libtool。然后,执行./configure, make all, make install命令进行编译和安装。另外,也可以尝试执行以下命令:$ autoreconf -vif $ ./configure --prefix=/usr/lib/erlang/lib $ make $ sudo make install。你可以参考以下链接获取更多信息:https://github.com/plashchynski/libdssl/issues/4 https://askubuntu.com/questions/27677/cannot-find-install-sh-install-sh-or-shtool-in-ac-aux \[1\]。
问题:configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."的解决方法是什么?
回答: 当出现configure报错"cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."时,可以尝试以下解决方法:首先,确保已经安装了必要的软件包,可以使用sudo apt-get install automake autoconf libtool命令进行安装。然后,执行./configure, make all, make install命令进行编译和安装。另外,也可以尝试执行$ autoreconf -vif $ ./configure --prefix=/usr/lib/erlang/lib $ make $ sudo make install命令。更多信息可以参考以下链接:https://github.com/plashchynski/libdssl/issues/4 https://askubuntu.com/questions/27677/cannot-find-install-sh-install-sh-or-shtool-in-ac-aux \[1\]。
#### 引用[.reference_title]
- *1* [configure时,Cannot find install-sh, install.sh, or shtool in ac-aux解决办法](https://blog.csdn.net/hubinbin595959/article/details/104838350)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [./configure时,error: cannot find install-sh, install.sh, or shtool解决方法](https://blog.csdn.net/houwenbin1986/article/details/78644990)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
下载strongswan时报错./configure:error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
这个错误通常是由于缺少必要的构建工具导致的。您可以尝试安装 automake 和 autoconf 工具来解决这个问题。
在 Ubuntu 上,可以使用以下命令安装这些工具:
```
sudo apt-get update
sudo apt-get install automake autoconf
```
在 CentOS 或者 RHEL 上,可以使用以下命令安装这些工具:
```
sudo yum install automake autoconf
```
安装完成后,再重新运行 ./configure 命令,应该就可以成功了。
阅读全文