1 安装之后,进入Redis根目录下的src下,输入make test,出现

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

2 解决的方法:

      输入以下的命令

wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz  
tar xzvf tcl8.6.1-src.tar.gz  -C /usr/local/  
cd  /usr/local/tcl8.6.1/unix/  
./configure  
make  
make install

3 运行make test ,出现以下就是成功了

     Linux安装Redis后,make test出现You need tcl 8.5 or newer in order to run the Redis test”问题

相关文章:

  • 2021-11-13
  • 2021-05-16
  • 2021-10-02
  • 2021-07-24
  • 2022-12-23
  • 2022-01-04
  • 2021-04-29
  • 2022-12-23
猜你喜欢
  • 2021-12-01
  • 2022-02-19
  • 2021-06-01
  • 2022-12-23
相关资源
相似解决方案