3

我按照说明安装了FB 机器学习工具。

库安装说明之一是

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.

有什么问题?

4

2 回答 2

1

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

有关步骤,请参见此处:https ://github.com/facebook/folly#dependencies

于 2018-11-26T14:36:07.727 回答
-3

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

只是不要尝试安装。

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

在您的情况下,将足以查看从终端安装到您的操作系统的文档。

于 2019-07-31T16:43:55.823 回答