$ tar xzvf redis-3.0.3.tar.gz $ cd redis-3.0.3 $ make //编译 编译完毕进行 $ make test 命令測试 得到例如以下错误信息: cd src && make test make[1]: Entering directory `/tmp/redis-3.0.1/src' You need tcl 8.5 or newer in order to run the Redis test make[1]: *** [test]…
redis 5.0.5 安装脚本: #!/bin/bash cd /data/src/ test -e tcl8.6.9-src.tar.gz || wget http://downloads.sourceforge.net/tcl/tcl8.6.9-src.tar.gz tar xzvf tcl8.6.9-src.tar.gz cd tcl8.6.9/unix/ ./configure make && make install cd /data/src/ test -e redis-5.…