autogen.sh: error: could not find autoreconf. autoconf and automake are required to run autogen.sh.
时间: 2024-04-11 21:33:40 浏览: 131
m4+autoconf 【Cannot find autoconf】
It seems that you are encountering an error while running the `autogen.sh` script. This error message indicates that the `autoreconf` command is not found, and both `autoconf` and `automake` are required to run the `autogen.sh` script.
To resolve this issue, you need to install the necessary dependencies. You can do this by using your package manager. For example, if you are using a Debian-based system like Ubuntu, you can run the following command:
```
sudo apt-get install autoconf automake
```
If you are using a different Linux distribution, the package names may vary. You can search for the appropriate packages for your distribution using the package manager's search functionality.
Once you have installed `autoconf` and `automake`, try running the `autogen.sh` script again, and it should work without the previous error.
阅读全文