How to Convert PDF to EPUB on Mac — Free, No Install Required
On macOS you have three good options: a browser-based converter (no install, any Mac), Calibre (free desktop app, offline), or the command line. All three work on Intel and Apple Silicon Macs.
Option 1: Browser-based (quickest, any Mac)
- Open toolkit.bot/pdf2epub in Safari, Chrome, or Firefox
- Drag your PDF onto the upload area or click to browse
- Wait 10–60 seconds
- The EPUB downloads to your Downloads folder automatically
Free tier: 5 conversions per month. No account, no install. Works on macOS Ventura, Sonoma, and Sequoia on both Intel and M-series chips.
This is the best option when your PDF is scanned, has two-column layout (academic papers), or contains tables — cases where Calibre often fails. Full converter comparison →
Option 2: Calibre (offline, unlimited)
Calibre is a free desktop app for macOS that converts PDFs locally:
- Download from calibre-ebook.com (available for both Intel and Apple Silicon)
- Open Calibre → Add books → select your PDF
- Right-click → Convert books → Convert individually
- Set output format to EPUB → OK
Good for simple single-column books in bulk. Struggles with scanned PDFs (no OCR) and two-column papers. See Calibre vs toolkit.bot →
Option 3: Command line with curl
macOS includes curl by default. Open Terminal and run:
curl -X POST https://toolkit.bot/convert -F "file=@~/Desktop/document.pdf" -o ~/Desktop/document.epub
Replace the path with your file. The EPUB saves to your Desktop. This uses the free tier (5/month). For scripts and automation, see the Python API guide →
Batch convert a folder of PDFs
for f in ~/Documents/pdfs/*.pdf; do
curl -sX POST https://toolkit.bot/convert -F "file=@$f" -o "${f%.pdf}.epub"
sleep 2
done
Loading EPUBs onto your devices from Mac
Apple Books (iPhone, iPad, Mac)
Double-click the EPUB file — it opens directly in Apple Books on Mac and syncs to your iPhone and iPad via iCloud automatically. Or AirDrop it to your iPhone. Full Apple Books guide →
Kindle
Open Finder, connect Kindle via USB, drag the EPUB to the documents folder. Or email to your @kindle.com address. Full Kindle guide →
Kobo
Connect Kobo via USB, open in Finder, drag EPUB to the Kobo drive. Full Kobo guide →
Which method should you use?
- Browser (toolkit.bot) — best for scanned or complex PDFs; instant, no install
- Calibre — best for unlimited offline conversion of simple books
- curl / Python — best when you want to automate or script the conversion
Convert your PDF to EPUB on Mac — free, no download needed.
Convert PDF to EPUB →