Another Redis Desktop Manager怎么安装

编辑: admin 分类: mysql 发布时间: 2023-06-10 来源:互联网

Another Redis Desktop Manager简述

Another Redis Desktop Manager是一个更快,更好,更稳定的Redis桌面管理器,与Linux,Windows和Mac兼容。而且,加载大量密钥时,它不会崩溃。

Another Redis Desktop Manager安装

这类的软件、工具安装都非常的简单,易操作。

1、Mac或Linux安装

# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git
cd AnotherRedisDesktopManager
# install dependencies
npm install
# if download electron failed during installing, use this command
# ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed, open another tab, build up a desktop client
npm run electron
登录后复制

如果出现下面的报错信息,官方也比较贴心给出了解决方案。

# if error like this
../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory
# then try this
yum install libfontconfig1-dev -y
登录后复制

2、Windows安装

# install build tools for the first time, just execute once
npm install -g windows-build-tools
# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git
cd AnotherRedisDesktopManager
# install dependencies, 32-bit or 64-bit all use win32
npm install --platform=win32
# if download electron failed during installing, use this command
# npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
# npm install --platform=win32
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed to 100%, open another tab, build up a desktop client
npm run electron
登录后复制【文章原创作者:韩国服务器 https://www.68idc.cn 欢迎留下您的宝贵建议】