Come hang with us on Discord and chat directly with the team!Discordtop-bar-close-icon

2024-09-17

How to Install Calibre on Debian

tutorials
img

Calibre is a widely-used open-source e-book management tool. This guide provides a comprehensive walkthrough for installing Calibre on Debian.

Prerequisites

Ensure your Debian system meets these requirements:

  • A stable internet connection
  • Sudo or root privileges

Installation Steps

sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y python3-pyqt5 python3-pyqt5.qtwebkit python3-pyqt5.qtchart sqlite3
wget https://download.calibre-ebook.com/latest/calibre-x86_64.AppImage
chmod +x calibre-x86_64.AppImage
sudo mv calibre-x86_64.AppImage /opt
sudo ln -s /opt/calibre-x86_64.AppImage /usr/local/bin/calibre
calibre
  1. Update your package list and upgrade existing packages:
  2. Install Calibre's dependencies:
  3. Download the Calibre installer from the official website.
  4. Use wget to download the installer:
  5. Make the installer executable:
  6. Move the installer to the /opt directory:
  7. Create a symlink for easy access:
  8. Launch Calibre:

Conclusion

With these steps, Calibre is now installed on your Debian system, ready to manage your e-book collection efficiently.