zsh에 경로 변수를 추가하는 데 문제가 있습니다.
생성된 경고는 다음과 같습니다.
Warning: Homebrew's sbin was not found in your PATH but you have installed
formulae that put executables in /usr/local/sbin.
Consider setting the PATH for example like so:
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc
답변1
경고의 조언을 안전하게 따르고 다음을 실행할 수 있습니다.
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc
그러면 경고가 사라집니다.