我按照说明安装了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.
有什么问题?