Another Redis Desktop Manager是一個更快,更好,更穩定的Redis桌面管理器,與Linux,Windows和Mac相容。而且,加載大量密鑰時,它不會崩潰。
這類的軟體、工具安裝都非常的簡單,易於操作。
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
以上是Another Redis Desktop Manager怎麼安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!