mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-24 20:01:42 +00:00
Merge pull request #688 from Izaron/fedora-build
Updated "Compiling" section with Fedora
This commit is contained in:
commit
47cbdd9c1d
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