autoreconf:需要 'configure.ac' 或 'configure.in'

autoreconf: 'configure.ac' or 'configure.in' is required

我按照说明安装了 FB Machine Learning tools.

其中一个库安装说明是

cd ~/libraries
git clone https://github.com/facebook/folly.git
cd folly/folly/
autoreconf -ivf
./configure
cp -R ~/libraries/gtest-1.7/* ./test/gtest-1.7/
make
make check
sudo make install
sudo ldconfig # reload the lib paths after freshly installed folly. fbthrift needs it.

我在 autoreconf -ivf 遇到问题,错误是

autoreconf: 'configure.ac' or 'configure.in' is required

但是当我安装 autoreconf 时,我有最新的版本。

autoconf is already the newest version (2.69-9).
0 upgraded, 0 newly installed, 0 to remove and 26 not upgraded.

有什么问题吗?

folly 不再使用 autotols,而是 CMake(只有 CMakeLists.txt 文件,没有 configure.*)。

步骤请看这里:https://github.com/facebook/folly#dependencies

错误:autoreconf: 'configure.ac' or 'configure.in' is required

只是不要尝试安装。

在大多数情况下,autoreconf -i 命令会有所帮助,但由于软件包不合适,它对您不起作用:\

在您的情况下,查看从终端到您的 OS 的安装文档就足够了。