pnpm 명령어를 최신버전을 업데이트하기 위해 아래 명령어를 실행해줍니다.
(저는 mac 환경에서 진행했습니다. 참고 해주세요.)
pnpm install -g pnpm
설치가 완료된 후에 아래 명령어를 실행하여 버전이 잘 변경됐는지 확인할 수 있습니다.
pnpm -v
-g 옵션에서 에러가 발생하는 경우
Nothing to stop. No server is running for the store at ... ERR_PNPM_NO_GLOBAL_BIN_DIR Unable to find the global bin directory Run "pnpm setup" to create it automatically, or set the global-bin-dir setting, or the PNPM_HOME env variable. The global bin directory should be in the PATH.
pnpm이 글로벌 바이너리 디렉토리를 찾지 못해서 발생하는 에러로,
아래 명령어를 실행하거나 global-bin-dir 설정이나 PNPM_HOME 환경 변수 설정이 필요합니다.
pnpm setup
source ~/.zshrc
명령어를 다 실행했는데도 버전이 변경되지 않는 경우
Nothing to stop. No server is running for the store at /Users/[username]/Library/pnpm/store/v3
The location of the currently running pnpm differs from the location where pnpm will be installed
Current pnpm location: /opt/homebrew/bin
Target location: /Users/eunbin/Library/pnpm
Packages: +1
+
Progress: resolved 1, reused 1, downloaded 0, added 1, done
/Users/[username]/Library/pnpm/global/5:
+ pnpm 9.0.2
Done in 956ms
export PATH=/Users/eunbin/Library/pnpm/global/5:$PATH
source ~/.zshrc
install 완료 후에 path를 변경 후 적용하면 정상적으로 버전이 변경되는 것을 확인할 수 있습니다.
728x90
반응형
'etc' 카테고리의 다른 글
Mac OS Ventura 업데이트 이후 git path 문제 (0) | 2023.09.04 |
---|---|
Intellij javaRuntime error (0) | 2023.01.12 |