我按照说明安装了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.会出什么问题呢?
发布于 2018-11-26 22:36:08
folly不再使用autotols,而是使用CMake (只有一个CMakeLists.txt文件,没有configure.*)。
发布于 2019-08-01 00:43:56
错误:autoreconf: 'configure.ac' or 'configure.in' is required
只是不要试图安装。
在大多数情况下,autoreconf -i命令会有所帮助,但由于不适当的软件包,它对您不起作用:\
在您的情况下,将充分查看从终端安装到您的操作系统的文档。
https://stackoverflow.com/questions/53482982
复制相似问题