Centos6.5安装完做test的时候
># make test
cd src && make test
make[1]: Entering directory `/home/soft/redis-2.8.9/src'
You need tcl 8.5 or newer in order to run the Redis test
make[1]: *** [test] Error 1
make[1]: Leaving directory `/home/soft/redis-2.8.9/src'
make: *** [test] Error 2
需要安装tcl 8.5,网上解决方案
# wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz
# sudo tar -xzvf tcl8.6.1-src.tar.gz -C /usr/local/
# cd /usr/local/tcl8.6.1/unix/
# sudo ./configure
# sudo make
# sudo make install
本文介绍在Centos6.5环境下安装Redis并进行测试时遇到的问题及解决方法。当尝试运行Redis测试命令时,系统提示需要Tcl 8.5或更高版本。文章提供了下载和安装Tcl的具体步骤。
2522

被折叠的 条评论
为什么被折叠?



