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

安装redis的时候,出现了这么一个问题

[root@etcd3 src]# make test
You need tcl 8.5 or newer in order to run the Redis test
make: *** [test] Error 1

  

安装一下8.5或者最新的tcl

[root@etcd3 tmp]# wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz 
[root@etcd3 tmp]# tar xzvf tcl8.6.1-src.tar.gz  -C /usr/local/
[root@etcd3 tmp]# cd  /usr/local/tcl8.6.1/unix/
[root@etcd3 unix]# ./configure
[root@etcd3 unix]# make
[root@etcd3 unix]# make isntall

  

重新执行redis test: [root@etcd3 src]# make test 

[root@etcd3 src]# make test
...

o/ All tests passed without errors!

Cleanup: may take some time... OK

以上

原文地址:https://www.cnblogs.com/cxbhakim/p/9150953.html