Last active
April 18, 2024 08:05
-
-
Save delagreen-v2/a072e0be92ba396d27ca826a63607f81 to your computer and use it in GitHub Desktop.
Установка программ для проекта
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #install CMake | |
| wget https://github.com/Kitware/CMake/archive/refs/tags/v3.29.2.tar.gz | |
| tar -zxvf v3.29.2.tar.gz | |
| cd CMake-3.29.2 | |
| ./bootstrap | |
| sudo make install | |
| ??sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python-dev | |
| ??sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python3-dev | |
| #lisb to poppler | |
| sudo apt-get install poppler-utils libpoppler-cpp-dev | |
| #install pdftk | |
| sudo apt install pdftk | |
| pip install python-poppler | |
| https://tesseract-ocr.github.io/tessdoc/Compiling-–-GitInstallation.md | |
| #install tesseract OCR | |
| wget https://github.com/tesseract-ocr/tesseract/archive/refs/tags/5.3.4.tar.gz | |
| tar -zxvf 5.3.4.tar.gz | |
| sudo apt-get install automake ca-certificates g++ git libtool libleptonica-dev make pkg-config | |
| cd tesseract | |
| ./autogen.sh | |
| ./configure | |
| make | |
| sudo make install | |
| sudo ldconfig | |
| sudo apt install poppler-utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment