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

原创
2016/03/22 07:11
阅读数 2.1K

在安装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
展开阅读全文
加载中

作者的其它热门文章

打赏
1
1 收藏
分享
打赏
0 评论
1 收藏
1
分享
返回顶部
顶部