Redis: You need tcl 8.5 or newer in order to run

在安装redis的时候,运行make test命令出现如下错误提示:

Redis: You need tcl 8.5 or newer in order to run the Redis test

原因是服务器上安装的tcl版本太低,可以使用 rpm-qa|grep tcl 查看版本

解决办法安装高版本的tcl,这里介绍从tcl官网下载源码包安装的方法

wget http://downloads.sourceforge.net/tcl/tcl8.6.5-src.tar.gz
tar -zxvf tcl8.6.5-src.tar.gz
cd unix
./configure 
make
make install

你可能感兴趣的:(redis,rpm,Tcl,8.5)