Here're command used in installing Tesseract Alpha 5.0.0 on UBUNTU 18.04.4 LTS
Hope it helps!! #Start Pre-Installation for Tesseract 5.00 Alpha (Refer https://github.com/tesseract-ocr/tesseract/wiki) sudo add-apt-repository ppa:alex-p/tesseract-ocr-devel sudo apt-get update #Start Installing Tesseract sudo apt install tesseract-ocr sudo apt install libtesseract-dev #If you want to install tesseract language pack sudo apt-get install tesseract-ocr- [lang] (For example, if want install Chinese-simplified data pack) sudo apt-get install tesseract-ocr-chi-sim #Else if you want all the language packs to be downloaded sudo apt-get install tesseract-ocr-all #If you want integrate and use Tesseract in Python with TesserOCR pip install tesserocr -------------------------------------------------------- #Checking your installed language packages in Tesseract tesseract --list-langs -------------------------------------------- Cheers!