Ubuntu下的redis安装过程

Redis make test Errors? - Stack Overflow  https://stackoverflow.com/questions/48425998/redis-make-test-errors

安装redis服务器时,执行sudo make test时出现错误 - maChao_97的博客 - CSDN博客  https://blog.csdn.net/maChao_97/article/details/79405773

You need tcl 8.5 or newer in order to run the Redis test
Makefile:225: recipe for target ‘test’ failed
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
安装成功后再执行sudo make test即可`

---------------------
作者:maChao_97
来源:CSDN
原文:https://blog.csdn.net/maChao_97/article/details/79405773
版权声明:本文为博主原创文章,转载请附上博文链接!

原文地址:https://www.cnblogs.com/tongongV/p/10927911.html