Installation
How to install HoneyBear Folio.
On this page
Linux
We offer several package formats to suit your distribution.
Option 1: Flatpak (Recommended)
The Flatpak version is sandboxed and includes all necessary dependencies.
- Download the
.flatpakfile from the Releases page. - Install via command line:
flatpak install com.honeybearfolio.honeybearfolio.flatpak
Option 2: AppImage (Portable)
The AppImage requires no installation—just download and run.
- Download
HoneyBear-Folio-x.x.x.AppImage. - Make it executable:
chmod +x HoneyBear-Folio-*.AppImage - Run it:
./HoneyBear-Folio-*.AppImage
Option 3: DEB / RPM
For Debian/Ubuntu or Fedora/RHEL based systems.
- Debian/Ubuntu:
sudo dpkg -i honeybear-folio_*.deb - Fedora:
sudo dnf install ./honeybear-folio-*.rpm
Windows
- Download the installer (
HoneyBear-Folio_x.x.x_x64-setup.exeor.msi) from the Releases page. - Run the installer.
Microsoft Defender SmartScreen Warning: Because HoneyBear Folio is an open-source project and may not be code-signed with a costly certificate yet, you might see a “Windows protected your PC” popup.
- Click More Info.
- Click Run anyway.
macOS
- Download the
.dmgdisk image. - Open it and drag “HoneyBear Folio” into your Applications folder.
“Unidentified Developer” Warning: On the first launch, macOS may block the app because it wasn’t downloaded from the App Store.
- Go to System Settings > Privacy & Security.
- Scroll down to the Security section.
- You should see a message about HoneyBear Folio being blocked. Click Open Anyway.
Building from Source
If you prefer to compile the application yourself (e.g., for Arch Linux or development), you will need Bun and Rust.
- Install Prerequisites:
- Rust
- Bun
- System libraries (gtk, webkit2gtk). See Contributing for the full list.
- Clone and Build:
git clone https://github.com/HoneyBearFolio/HoneyBear-Folio.git cd HoneyBear-Folio/app # Install JS dependencies bun install # Build the binary (release mode) bun run tauri build - The binary will be located in
src-tauri/target/release/bundle/.