Skip to content

Instantly share code, notes, and snippets.

@LeoHeo
Last active September 6, 2016 08:32
Show Gist options
  • Save LeoHeo/0aad3908b64e43b6e5d2c006799b0dc3 to your computer and use it in GitHub Desktop.
Save LeoHeo/0aad3908b64e43b6e5d2c006799b0dc3 to your computer and use it in GitHub Desktop.
Fixing npm permissions
sudo chown -R `whoami` /usr/local/lib/node_modules
sudo chown -R `whoami` /usr/local/bin
sudo chown -R `whoami` /usr/local/share

문제제기

  • mac에서 -g로 글로벌하게 install를 할때 npm install -g webpack를 하면 EACCES error가 뜰때

문제원인

  • install로 디렉토리에 생성할 permission이 없기때문에

해결방법

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment