http://docs.redisdesktop.com/en/latest/install/#build-from-source
Quick Install
Windows
- Download Windows Installer from http://redisdesktop.com/download
- Run downloaded installer
Mac OS X
- Download dmg image from http://redisdesktop.com/download (Requires subscription)
- Mount dmg image
- Run rdm.app
Ubuntu
- Download
deb
package from http://redisdesktop.com/download (Requires subscription) - Install package via Ubuntu Software Center
- Run RedisDesktopManager :
/usr/share/redis-desktop-manager/bin/rdm
orredis-desktop-manager
After installation Redis Desktop Manager will be available in main menu.
Fedora
Build from source with automated bash script
CentOS
Build from source with automated bash script
OpenSUSE
Build from source with automated bash script
ArchLinux
Package - https://aur.archlinux.org/packages/redis-desktop-manager/
Other platforms
You can build Redis Desktop Manager from source.
Build from source
Get source
- Install git
- Get source code:
git clone --recursive https://github.com/uglide/RedisDesktopManager.git -b 0.8.0 rdm && cd ./rdm
Build on Linux
Ubuntu
cd src/ ./configure source /opt/qt56/bin/qt56-env.sh && qmake && make && sudo make install cd /usr/share/redis-desktop-manager/bin sudo mv qt.conf qt.backup
Fedora & CentOS & OpenSUSE
cd src/ ./configure qmake-qt5 && make && sudo make install cd /usr/share/redis-desktop-manager/bin sudo mv qt.conf qt.backup
Tip: checkinstall
Instead of sudo make install
consider to use sudo checkinstall -D --install
on deb-based OS and sudo checkinstall -R --install
on rpm-based OS to generate package and install it into the system.
Build on OS X
- Install XCode with xcode build tools
- Build RDM dependencies
cd ./src && ./configure
- Install Qt 5.6
- Open ./src/rdm.pro in Qt Creator
- Run build
Build on Windows
- Install Visual Studio 2013 Community with Update 5
- Install Qt 5.6
- Download RDM dependencies
cd ./src
and runconfigure.bat
- Open ./src/rdm.pro in Qt Creator
- Run build