安裝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
以上
