出处
在安装tesseract4.0.0时报错:
libtool: Version mismatch error. This is libtool 2.4.6, but the
libtool: definition of this LT_INIT comes from libtool 2.4.2.
原因
libtool版本没对上,安装2.4.6版本的libtool
解决
- 下载并解压
wget http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz
tar -zxf libtool-2.4.6.tar.gz
cd libtool-2.4.6
- 安装
./configure --prefix=/usr
sudo make
sudo make install
sudo ldconfig