Skip to content
On this page

npm missing write access error

Title
npm missing write access error
Category
Troubleshooting
Tags
Aliases
npm missing write access error
Created
3 years ago
Updated
last year

에러 상황

npm을 처음 설치하고 global 옵션으로 yarn 을 설치하려고 할 때 에러가 발생했다 .

bash
Missing write access to /usr/local/lib/node_modules
Missing write access to /usr/local/lib/node_modules

npm-missing-write-access-error-image-0

해당 디렉토리에 쓰기 권한이 없다는 뜻이기 때문에, 다음의 명령어를 실행한다.

bash
sudo chown -R $USER /usr/local/lib/node_modules
sudo chown -R $USER /usr/local/lib/node_modules

Released under the MIT License.