How To Install gimagereader on Kali Linux
Introduction
In this tutorial we learn how to install gimagereader on Kali Linux.
What is gimagereader
gimagereader is:
gImageReader is a simple GTK+ front-end to tesseract-ocr. Tesseract is probably the most accurate open source optical character recognition (OCR) software and can recognize text in over 60 languages.
gImageReader supports automatic page layout detection but the user can also manually define and adjust the recognition regions. It is possible to import images from disk, scanning devices, clipboard and screenshots. gImageReader also supports multipage PDF documents. Recognized text is displayed directly next to the image and basic text editing including search/replace and removing of line breaks is possible. Spellchecking for the output text is also supported if the corresponding dictionaries are installed.
There are three methods to install gimagereader on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install gimagereader Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install gimagereader using apt-get by running the following command:
sudo apt-get -y install gimagereaderInstall gimagereader Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install gimagereader using apt by running the following command:
sudo apt -y install gimagereaderInstall gimagereader Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install gimagereader using aptitude by running the following command:
sudo aptitude -y install gimagereaderHow To Uninstall gimagereader on Kali Linux
To uninstall only the gimagereader package we can use the following command:
sudo apt-get remove gimagereaderUninstall gimagereader And Its Dependencies
To uninstall gimagereader and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gimagereaderRemove gimagereader Configurations and Data
To remove gimagereader configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gimagereaderRemove gimagereader configuration, data, and all of its dependencies
We can use the following command to remove gimagereader configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gimagereaderDependencies
gimagereader have the following dependencies:
- dconf-gsettings-backend
- libatkmm-1.6-1v5
- libc6
- libcairomm-1.0-1v5
- libdjvulibre21
- libenchant-2-2
- libfontconfig1
- libgcc-s1
- libglib2.0-0
- libglibmm-2.4-1v5
- libgomp1
- libgtk-3-0
- libgtkmm-3.0-1v5
- libgtksourceviewmm-3.0-0v5
- libgtkspellmm-3.0-0v5
- libjpeg62-turbo
- libjson-glib-1.0-0
- libpangocairo-1.0-0
- libpangomm-1.4-1v5
- libpodofo0.9.7
- libpoppler-glib8
- libsane1
- libsigc++-2.0-0v5
- libstdc++6
- libtesseract4
- libuuid1
- libxml++2.6-2v5
- libzip4
References
Summary
In this tutorial we learn how to install gimagereader package on Kali Linux using different package management tools: apt, apt-get and aptitude.