下载strongswan时报错./configure:error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
时间: 2023-12-24 20:48:23 浏览: 127
install.sh
这个错误通常是由于缺少必要的构建工具导致的。您可以尝试安装 automake 和 autoconf 工具来解决这个问题。
在 Ubuntu 上,可以使用以下命令安装这些工具:
```
sudo apt-get update
sudo apt-get install automake autoconf
```
在 CentOS 或者 RHEL 上,可以使用以下命令安装这些工具:
```
sudo yum install automake autoconf
```
安装完成后,再重新运行 ./configure 命令,应该就可以成功了。
阅读全文