Ubuntu 14.04下Redis安装报错:“You need tcl 8.5 or newer in order to run the Redis test”问题解决
安装所遇问题
在安装成功之后,可以运行测试,确认Redis的功能是否正常
$ make test
1出现报错:
1 hadoop@stormspark:~/workspace/redis2.6.13/src$ make test
2 You need tcl 8.5 or newer in order to run the Redis test
3 make: *** [test] Error 1
解决方式
安装tcl
1 wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz
2 sudo tar xzvf tcl8.6.1-src.tar.gz -C /usr/local/
3 cd /usr/local/tcl8.6.1/unix/
4 sudo ./configure
5 sudo make
6 sudo make install