mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-03 00:49:01 +08:00
1455bf5610
implement 'make install LANG="eng ara deu"'; more headers need to be installed: https://groups.google.com/group/tesseract-dev/msg/a4f7424377993b2e git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@700 d0cd1f9f-072b-0410-8dd7-cf729c803f20
22 lines
647 B
Plaintext
22 lines
647 B
Plaintext
If you have checked out Tesseract from Subversion, you must generate the
|
|
configure script.
|
|
|
|
If you have tesseract 3.0x installation in your system, please remove it
|
|
before new build.
|
|
|
|
So, the steps for making Tesseract are:
|
|
|
|
$ ./autogen.sh
|
|
$ ./configure
|
|
$ make
|
|
$ sudo make install
|
|
$ sudo make install-langs
|
|
|
|
'sudo make install-langs' or 'sudo make install LANGS=' will install all
|
|
available language data files in tessdata directory.
|
|
|
|
If you want to install just few of them than run:
|
|
$ make install LANGS="eng ara deu"
|
|
It will install only English, Arabic and German language datafiles (if
|
|
they are present in tessdata directory)
|