zsh: command not found: yarn 오류 해결 방법

소요 시간: 1분

내용: 오류 메시지:

zsh: command not found: yarn

이 오류는 시스템에 Yarn이 설치되어 있지 않아서 발생합니다. Yarn은 자바스크립트 패키지 매니저 중 하나로, npm과 비슷하지만 보안을 강조하고 불필요한 부분을 제거하여 더 가볍게 설계되었습니다.


설치 방법:

1. npm으로 설치하기:

npm install --global yarn

2. Homebrew로 설치하기:

brew install yarn --without-node
brew install yarn

위 방법 중 하나를 선택하여 Yarn을 설치하면 오류가 해결될 것입니다.

자바스크립트 리스트