Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ OCR-Manga has a few dependencies you will need:
in their package repositories.
- [pillow](https://github.com/python-pillow/Pillow)
- [pyocr](https://github.com/jflesch/pyocr)
- [ConfigObj](https://github.com/DiffSK/configobj)
- [magic](https://github.com/ahupp/python-magic)
- [myougiden](https://github.com/leoboiko/myougiden)
- [rarfile](https://github.com/markokr/rarfile)
Expand All @@ -22,15 +23,15 @@ Ubuntu/Debian

Install pip, Tk, and Tesseract:

`sudo apt-get install python3-pip python3-tk tesseract-ocr tesseract-ocr-jpn`
`sudo apt-get install python3-pip python3-configobj python3-tk tesseract-ocr tesseract-ocr-jpn`


Arch Linux
----------

Install pip, Tk, and Tesseract:

`sudo pacman -S python-pip tk tesseract tesseract-data-jpn`
`sudo pacman -S python-pip python-configobj tk tesseract tesseract-data-jpn`


Gentoo
Expand All @@ -41,7 +42,7 @@ either have `ja` in your L10N or specify `l10n_ja` as an USE flag for Tesseract.

Install pip and Tesseract:

`sudo emerge -a dev-python/pip app-lang/tesseract`
`sudo emerge -a dev-python/pip dev-python/configobj app-lang/tesseract`

Install various python modules:
-------------------------------
Expand All @@ -54,6 +55,9 @@ Install various python modules:

The manga can be a zip, rar, tar, or just a plain old directory.

OCR-Manga accepts a configuration file in ``~/.config/OCR-Manga/config``.
See the [options](https://github.com/Dudemanguy911/OCR-Manga/blob/master/options.md) page for a list of default options and their key bindings.

## Contributions

Contributions are welcomed and accepted. It is required that all pull
Expand Down
Loading