运行下载strongswan报错error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
时间: 2023-12-24 13:49:42 浏览: 150
这个错误通常是由于缺少 `automake` 工具导致的。你可以使用以下命令来安装 `automake`:
- Ubuntu/Debian:
```
sudo apt-get install automake
```
- CentOS/RHEL:
```
sudo yum install automake
```
安装完成后,重新运行 `./configure && make` 命令。如果还有其他的错误,请将错误信息一并提供,以便我能够更好地帮助你解决问题。
相关问题
下载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 命令,应该就可以成功了。
./configure:error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
这个错误提示通常是由于缺少必要的工具或者路径问题导致的。尝试以下几个解决方法:
1. 安装 automake 和 autoconf 工具:
```
sudo apt-get install automake autoconf
```
2. 如果已经安装了这些工具,尝试运行 aclocal、automake 和 autoconf 命令:
```
aclocal
automake --add-missing
autoconf
```
3. 如果上述方法仍然无法解决问题,那么可能是安装路径的问题。可以尝试指定安装路径:
```
./configure --prefix=/usr/local
```
其中 `/usr/local` 是一个常见的安装路径,可以根据实际情况进行修改。
阅读全文