0
点赞
收藏
分享

微信扫一扫

Redis安装报错:“You need tcl 8.5 or newer in order to run the Redis test”问题解决

烟中雯城 2021-09-24 阅读 80
日记本

安装所遇问题
在安装成功之后,可以运行测试,确认Redis的功能是否正常

$ make test
出现报错:

hadoop@stormspark:~/workspace/redis2.6.13/src$ make test
You need tcl 8.5 or newer in order to run the Redis test
make: *** [test] Error 1
解决方式
安装tcl

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

成功运行test

举报

相关推荐

0 条评论