文章系转载,便于整理和归类,原文地址:https://blog.youkuaiyun.com/liyaoyes/article/details/112557177
问题
linux安装redis6.x时候,make test后有错误如下
You need tcl 8.5 or newer in order to run the Redis test
解决方法
1.直接安装新的tcl,命令如下:
yum install -y tcl-devel
2.清空之前的make的缓存命令:
make distclean
3.重新make编译命令:
make
4.结束后重新测试命令:
make test
结束
具体其他安装命令 可以查看 redis解压后的目录下 README.MD文件.
在Linux上安装Redis6.x过程中,如果遇到`You need Tcl 8.5 or newer in order to run the Redis test`的错误,可以通过以下步骤解决:1. 使用`yum install -y tcl-devel`安装新的tcl;2. 清除之前的make缓存,运行`make distclean`;3. 重新编译Redis,使用`make`命令;4. 最后运行`maketest`进行测试。参照Redis解压目录下的README.MD文件获取更多安装详情。
1094

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



