-
Notifications
You must be signed in to change notification settings - Fork 442
Installation
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
After Installation you can now use CCExtractor. To use it call CCExtractor from the terminal by doing ./ccextractor <file>
To use CCExtractor with a gui you will additionally need to install GLEW and GLFW
In order to compile it you'll need to configure it using autoconf. The only difference passing the -with-gui
option to
./configure
.
./autogen.sh && ./configure --with-gui && make
Once set up you can run the GUI interface from the terminal ./ccextractorGUI
In Order to install CCExtractor you need to have the following libraries installed: gcc,tesseract-devel
Don't worry tesseract-devel comes default with leptonica
You can install them using yum or paste this in your terminal
sudo yum install -y gcc
sudo yum install -y tesseract-devel
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 and automake installed using yum to generate configuration script.
./autogen.sh && ./configure && make
- Using Cmake.
mkdir build && cd build; cmake ../src/ && make
After Installation you can now use CCExtractor. To use it call CCExtractor from the terminal by doing ./ccextractor <file>
To use CCExtractor with a gui you will additionally need to install GLEW and GLFW
In order to compile it you'll need to configure it using autoconf. The only difference passing the -with-gui
option to ./configure
.
./autogen.sh && ./configure --with-gui && make
Once set up you can run the GUI interface from the terminal ./ccextractorGUI