mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2025-01-30 13:54:39 +00:00
Updated "Compiling" section with Fedora
This commit is contained in:
parent
1975848ecc
commit
9b527b7793
34
README.md
34
README.md
@ -33,15 +33,41 @@ More usage information can be found on our website:
|
||||
## Compiling
|
||||
|
||||
### Debian/Ubuntu
|
||||
|
||||
Install these packages in the terminal
|
||||
|
||||
# make sure you have CCExtractor repository forked
|
||||
# clone repository
|
||||
sudo apt-get install -y git
|
||||
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username
|
||||
|
||||
# installing dependencies
|
||||
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
|
||||
Then run script linux/build or linux/builddebug.
|
||||
|
||||
# compiling
|
||||
cd ccextractor/linux
|
||||
./build
|
||||
|
||||
# test your build
|
||||
./ccextractor
|
||||
|
||||
### Fedora
|
||||
# make sure you have CCExtractor repository forked
|
||||
# clone repository
|
||||
sudo yum install -y git
|
||||
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username
|
||||
|
||||
# installing dependencies
|
||||
sudo yum install -y gcc
|
||||
sudo yum install -y tesseract-devel # leptonica will be installed automatically
|
||||
|
||||
# compiling
|
||||
cd ccextractor/linux
|
||||
./build
|
||||
|
||||
# test your build
|
||||
./ccextractor
|
||||
|
||||
### Windows
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user