Database
[Redis/Error] You need tcl 8.5 or newer in order to run the Redis test 에러 해결
74059
2023. 7. 4. 16:14
에러메시지
You need tcl 8.5 or newer in order to run the Redis test
Dockerfile 작성해서 이미지 빌드하면서 생긴 에러..
대부분 yum install -y tcl 설치해주면 된다했지만, 해도 해결 안됨.
알고보니 runtest 실행시킬 때 which 모듈이 필요한데, 그게 없어서 그런거였음. 요즘은 오픈소스에 필요모듈 설치해주지 않나......?
yum install -y which
답이 상위 검색에 노출되어있었는데, 영어 읽기 귀찮아하다가 삽질함.. ^_^..
https://github.com/redis/redis/issues/1218
make test fails · Issue #1218 · redis/redis
Your documentation states: "The suggested way of installing Redis is compiling it from sources as Redis has no dependencies other than a working GCC compiler and libc." Ok, so when I go to install ...
github.com