Skip to content

Installation

Windows

  • Installer (x64): Download RedisME_3.2.0_x64-setup.exe, then double-click to install
  • Portable (x64): Download RedisME_3.2.0_portable_x64.zip, extract the archive, and double-click the .exe to run
  • Installer (Arm64): Download RedisME_3.2.0_arm64-setup.exe, then double-click to install
  • Portable (Arm64): Download RedisME_3.2.0_portable_arm64.zip, extract the archive, and double-click the .exe to run
  • Microsoft Store: RedisME

Troubleshooting

If the app asks you to install the WebView runtime but the download fails, install the WebView2 Runtime manually.

MacOS

  • Apple Silicon: Download RedisME_3.2.0_aarch64.dmg
  • Intel: Download RedisME_3.2.0_x64.dmg

Open the .dmg file and drag RedisME.app into the Applications folder.

Troubleshooting (app notarization requires an Apple Developer Program membership, $99/year)

  • If you see “RedisME” is damaged and can’t be opened after installation, open Terminal.app and run:
bash
sudo xattr -d com.apple.quarantine /Applications/RedisME.app

Then try opening RedisME again.

  • If you see cannot be opened because the developer cannot be verified: click Cancel, open System Settings → Privacy & Security, click Open Anyway, then confirm Open in the dialog.

Linux

  • DEB (Debian-based): RedisME_3.2.0_amd64.deb | RedisME_3.2.0_arm64.deb
  • RPM (Red Hat–based): RedisME-3.2.0-1.x86_64.rpm | RedisME-3.2.0-1.aarch64.rpm
  • Generic: RedisME_3.2.0_amd64.AppImage | RedisME_3.2.0_aarch64.AppImage

Install deb packages with apt:

bash
# x64
sudo apt install ./RedisME_3.2.0_amd64.deb

# arm64
sudo apt install ./RedisME_3.2.0_arm64.deb

Install rpm packages with dnf:

bash
# x64
sudo dnf install ./RedisME-3.2.0-1.x86_64.rpm

# arm64
sudo dnf install ./RedisME-3.2.0-1.aarch64.rpm

Using AppImage:

bash
# x64
chmod u+x RedisME_3.2.0_amd64.AppImage
./RedisME_3.2.0_amd64.AppImage

# arm64
chmod u+x RedisME_3.2.0_aarch64.AppImage
./RedisME_3.2.0_aarch64.AppImage