How To Install Calibre On The Most Popular Linux Systems

Hello Linux Geeksters. As you may already know, Calibre is an open-source book management software, with many interesting features including e-book conversion, e-book viewer, library to ebook reader synchronization and support for the most popular eBook formats, including: epub, cbz, mobi, fb2 . Being multi-platform, the app works on Linux, Windows and Mac OS X.

Watch Free Movies

The latest version available is Calibre 2.3.0, coming with bug-fixes and the below improvements:

  • Cover Grid: Dynamically adjust the size of the in memory cover thumbnail cache based on the window size to ensure flicker free rendering even on very large screens.
  • Template tester: Remember last used template
  • Get Books: When downloading books show a popup message telling the user that the books will be added to the calibre library automatically, to help new users understand what is happening. The popup message can be disabled.
  • E-book viewer: Try to detect when a chapter has a page break before the start of the chapter’s text resulting in a leading blank page and override the page break.

For more information about this release, see the changelog.

how to install Calibre 2.3.0 on Ubuntu, Debian, Elementary OS, Deepin, Peppermint, Pinguy OS, LXLE, Linux Lite, Fedora, CentOS, OpenSUSE, Mageia, OpenMandriva, Arch Linux, Manjaro

In this article I will show you how to install Calibre 2.3.0 on Ubuntu, Debian, Elementary OS, Deepin, Peppermint, Pinguy OS, LXLE, Linux Lite, Fedora, CentOS, OpenSUSE, Mageia, OpenMandriva, Arch Linux, Manjaro and other Linux systems.

There is no repository available for Calibre 2.3.0, but the developers provide us a python oneliner for installing the latest Calibre version. So, to install Calibre 2.3.0 on Linux systems, do:

$ sudo python -c "import sys; py3 = sys.version_info[0] > 2; u = __import__('urllib.request' if py3 else 'urllib', fromlist=1); exec(u.urlopen('http://status.calibre-ebook.com/linux_installer').read()); main()"

The installation script downloads and extracts the latest Calibre installer, and installs the app in /opt/calibre, by default. But the user can easily change the installation destination.

Scroll to Top