-
Notifications
You must be signed in to change notification settings - Fork 442
Installation
Matej Plavevski edited this page Dec 11, 2017
·
17 revisions
In Order to install CCExtractor you need to have the following libraries installed: gcc,tesseract-ocr,tesseract-orc-dev,libleptonica-dev,libcurl4-gnutils-dev
You can install them using apt-get or paste this in your terminal
sudo apt-get install -y gcc
sudo apt-get install -y libcurl4-gnutls-dev
sudo apt-get install -y tesseract-ocr
sudo apt-get install -y tesseract-ocr-dev
sudo apt-get install -y libleptonica-dev
Note: On Ubuntu Version 14.04 (Trusty) and earlier, you should build leptonica and tesseract from source
There are 3 ways to set up ccextractor depending on your choice.
-
First and easiest way is to go in the linux folder and use the build script.
cd linux && ./build
-
Standard linux compilation through Autoconf scripts. You'll need to have autoconf installed using apt-get.
./autogen.sh && ./configure && make
-
Using Cmake.
mkdir build && cd build; cmake ../src/ && make