Installation
Rostyman is a desktop application built with Electron. It runs on Windows, macOS, and Linux.
Download
Go to the Releases page and download the latest version for your platform.
Native builds are available for both x64 and ARM64 — choose an ARM64 build only for ARM hardware (Windows on Arm, Raspberry Pi, ARM servers/cloud); otherwise pick x64. The download page auto-detects your OS and CPU and highlights the right one.
| Platform | File | Auto-update |
|---|---|---|
| Windows (x64 / ARM64) | Rostyman-Setup-x.x.x-x64.exe or …-arm64.exe | Yes |
| macOS (Apple Silicon / Intel) | Rostyman-x.x.x-arm64.dmg or …-x64.dmg | Manual |
| Linux (x64 / ARM64) | Rostyman-x.x.x-x64.AppImage or …-arm64.AppImage | Yes |
| Linux (x64 / ARM64) | rostyman_x.x.x_amd64.deb or …_arm64.deb | Manual |
| Linux (x64 / ARM64) | rostyman-x.x.x.x86_64.rpm or ….aarch64.rpm | Manual |
Windows
- Download
Rostyman-x.x.x-Setup.exefrom the releases page - Double-click to run the installer
- If Windows SmartScreen shows a warning, click More info then Run anyway
This warning appears because the app is not yet code-signed. It is safe to proceed.
- Follow the installer steps
- Rostyman launches automatically after installation
The installer places Rostyman in your user application directory (no admin rights needed) and creates a Start Menu shortcut.
macOS
-
Download
Rostyman-x.x.x.dmgfrom the releases page -
Open the
.dmgfile and drag Rostyman to your Applications folder -
Important -- clear the quarantine flag before first launch:
Open Terminal and run:
xattr -cr /Applications/Rostyman.appmacOS marks all apps downloaded from the internet as quarantined. Because Rostyman is not notarized with Apple, Gatekeeper will block it unless you remove the quarantine attribute with the command above.
-
Launch Rostyman from your Applications folder
If you skip the xattr step, macOS may show a dialog saying the app "is damaged and can't be opened" or "can't be opened because Apple cannot check it for malicious software." Running the xattr -cr command resolves this.
Linux
Three options are available: AppImage (works on any distribution), .deb (Debian/Ubuntu), and .rpm (Fedora/RHEL/openSUSE). Each is built for both x64 and ARM64 — pick ARM64 only for ARM hardware (Raspberry Pi, ARM servers/cloud).
Option 1: AppImage (recommended)
-
Download
Rostyman-x.x.x.AppImagefrom the releases page -
Make the file executable:
chmod +x Rostyman-x.x.x.AppImage -
Run the application:
./Rostyman-x.x.x.AppImage
AppImage supports automatic updates — Rostyman will notify you when a new version is available and update itself.
On some distributions you may need to install FUSE to run AppImage files. Consult your distribution's documentation if you see a FUSE-related error.
Option 2: .deb package (Debian/Ubuntu)
-
Download
rostyman_x.x.x_amd64.debfrom the releases page -
Install with:
sudo dpkg -i rostyman_x.x.x_amd64.debYou can also use
sudo apt install ./rostyman_x.x.x_amd64.deb. Withaptyou may see a note likeN: Download is performed unsandboxed as root … (13: Permission denied)— that's harmless (apt's sandbox user can't read your Downloads folder) and the package still installs. To avoid it, install from a shared path such as/tmp. -
Launch from your application menu or run
rostymanin the terminal
The .deb package integrates with your system — adds a desktop entry, file associations for .rostyman files, and an app icon. Note: .deb does not auto-update. To update, download and install the new .deb file.
Option 3: .rpm package (Fedora/RHEL/openSUSE)
-
Download
rostyman-x.x.x.x86_64.rpm(orrostyman-x.x.x.aarch64.rpmfor ARM64) from the releases page -
Install with:
sudo dnf install ./rostyman-x.x.x.x86_64.rpmOn openSUSE use
sudo zypper install ./rostyman-x.x.x.x86_64.rpm. -
Launch from your application menu or run
rostymanin the terminal
Like .deb, the .rpm package adds a desktop entry, .rostyman file associations, and an app icon, and does not auto-update — download and install the new .rpm to update.
.rostyman File Association
After installing (either format), you can double-click any .rostyman file to open it directly in Rostyman.
First Launch
On first launch Rostyman will:
- Create a local SQLite database in the platform-specific app data directory:
- Windows:
%APPDATA%\Rostyman\ - macOS:
~/Library/Application Support/Rostyman/ - Linux:
~/.config/Rostyman/
- Windows:
- Create a default workspace
- Open with an empty request tab ready to use
No account, no sign-in, no internet connection required.
Auto-Updates
Rostyman checks for updates automatically in the background every 4 hours. When a new version is available:
- The update downloads silently in the background
- A native system notification informs you that an update is ready
- A Update ready badge appears in the bottom status bar
- Click the badge and choose Restart now to apply, or Later to install on next launch
You can also manually check for updates via the Help menu and selecting Check for Updates.
Uninstalling
Rostyman also has a built-in Help → Uninstall Rostyman that removes your data, shortcuts, and icons — see the per-platform notes below for what it can and can't do.
Windows
Use Settings → Apps → Installed apps → Rostyman → Uninstall (or Start menu → right-click Rostyman → Uninstall). The in-app Help → Uninstall Rostyman does the same and also clears your data.
macOS
Quit Rostyman, then drag it from Applications to the Trash. To clear leftover data, delete ~/Library/Application Support/Rostyman. The in-app Help → Uninstall Rostyman removes the app bundle and data for you.
Linux
How you uninstall depends on how you installed:
.deb(Debian/Ubuntu):sudo apt remove rostyman(usesudo apt purge rostymanto also drop config)..rpm(Fedora/RHEL):sudo dnf remove rostyman(on openSUSE:sudo zypper remove rostyman).- AppImage: delete the
.AppImagefile and its menu entry:rm -f Rostyman-*.AppImage ~/.local/share/applications/rostyman.desktop
To remove leftover data for any install type (your collections database, settings, cache):
rm -rf ~/.config/Rostyman ~/.cache/Rostyman
Help → Uninstall Rostyman removes your data, shortcuts, and icons — and for an AppImage it also deletes the binary. For a .deb/.rpm install it cannot remove the installed package (that needs root), so it shows you the apt/dnf command to run yourself to finish the removal.