Skip to main content

File converters

Updated May 05, 2025 ·

EPUB to PDF

Easiest way to convert an EPUB to PDF is to download the Calibre Ebook Management. After downloading:

  1. Open the EPUB in the app
  2. Select the EPUB --> Convert Books
  3. Set the Output format to PDF

The output file will be saved to you Calibre Library, which is at C:\Users\username\Calibre Library

EPUB to PDF (WSL2)

I installed calibre on WSL2 on my Windows 10 machine.

sudo apt-get install -y calibre 

Verify:

calibre --version

To convert epub to pdf:

ebook-convert file.epub file.pdf --enable-heuristics 

Note: There might be issue on the images, especially the cover or front page of the book after conversion

Other options:

  • pandoc:

    sudo apt install pandoc
    pandoc -f epub -t pdf infile.epub -o outfile.pdf
  • epub2pdf

    • Download zip file from SOFTPEDIA

    • Unzip and make it executable

      chmod +x ./epub2pdf.sh 
    • Run the file:

      ./epub2pdf.sh <path-to-epub-file> 

File readers