돕다! Mac에 Cocoapods를 설치하려고 하는데 계속 오류가 발생하는 것은 Ruby 버전이 너무 오래된 것과 관련이 있을 수 있다고 생각합니다.
그런 다음 이런 일이 일어났습니다.
% ruby -v
ruby 2.6.10p210 (2022-04-12 revision 67958) [universal.x86_64-darwin22]
% brew upgrade ruby
Warning: ruby 3.2.1 already installed
% ruby -v
ruby 2.6.10p210 (2022-04-12 revision 67958) [universal.x86_64-darwin22]
이미 설치되어 있다고 나오는 이유는 무엇입니까?
답변1
$PATH
여전히 이전(아마 사전 설치된?) Ruby 버전을 가리키고 있는 것 같습니다 .
이 시도:
echo $PATH
# check if it includes the dir where homebrew installs its pkgs
# if it's not there, add the path to your .zshrc
export PATH=/usr/local/bin:$PATH
# close the terminal or, alternatiively
source ~/.zshrc
# check if the path is there
echo $PATH
brew upgrade ruby