npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules

前端 未结 5 688
孤城傲影
孤城傲影 2020-12-23 22:46

I am trying to install monaca with this command.

npm install -g monaca

But right after getting these errors:



        
5条回答
  •  独厮守ぢ
    2020-12-23 23:34

    add following lines to ~/.bashrc after installing npm:

    npm set prefix ~/.npm
    PATH="$HOME/.npm/bin:$PATH"
    PATH="./node_modules/.bin:$PATH"
    

    Execute following line after changes:

    source ~/.bashrc
    

    and as mentioned by @contemplator avoid using sudo

提交回复
热议问题