本文介绍在Linux、Windows、MacOS系统下安装Another Redis DeskTop Manager的方法,包括开发构建设置、构建包说明。
简介 Another Redis DeskTop Manager是一款快速且稳定的Redis桌面管理器,与Linux、Windows和MacOS操作系统兼容,而且,它在加载大量密钥时不会崩溃。 通常情况下,在Linux下用RedisDesktopManager有四种方式:一是用snap安装,二是用Wine运行RDM,三是下载相应的软件包安装,四是使用Another-Redis-Desktop-Manager。 相关参考:在Ubuntu系统下安装Redis Desktop Manager的方法。 附:软件截图
下载链接 下载地址:https://gitee.com/qishibo/AnotherRedisDesktopManager/releases/ 注:提供有AppImage、dmg、exe等安装包下载。
安装方法 1、Linux 下载最新的AppImage软件包,然后chmod +x,最后双击运行。 2、Windows 下载最新的exe软件包,双击安装。 3、Mac 下载最新的dmg软件包,双击安装。 或用brew:brew install another-redis-desktop-manager --cask
开发构建设置 1、Linux或Mac # 克隆代码 git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1 cd AnotherRedisDesktopManager # 安装依赖项 npm install # 如果在安装过程中下载电子文件失败,请使用此命令 # ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install # 在localhost:9988上开始 npm start # 完成上一步后,打开另一个选项卡,建立一个桌面客户端 npm run electron 如果是这样的Linux错误: ../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory 请试试这个: sudo apt install libfontconfig1-dev 2、Windows # 首次安装构建工具,只需执行一次 npm install -g windows-build-tools # 克隆代码 git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1 cd AnotherRedisDesktopManager # 安装依赖项,32位或64位都使用win32 npm install --platform=win32 # 如果在安装过程中下载电子文件失败,请使用此命令 # npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/ # npm install --platform=win32 # 在localhost:9988上开始 npm start # 在上一步完成100%之后,打开另一个标签,建立一个桌面客户端 npm run electron
构建包 # 打包前准备 npm run pack:prepare # 在各个平台上构建软件包 # 在Windows上构建64位软件包 npm run pack:win # 在Windows上构建32位软件包 npm run pack:win32 # 在Mac上 npm run pack:mac # 在Linux上 npm run pack:linux
相关主题 |