sudo: npm: command not found

前端 未结 25 2742
渐次进展
渐次进展 2020-11-28 01:19

I\'m trying to upgrade to the latest version of node. I\'m following the instructions at http://davidwalsh.name/upgrade-nodejs

But when I do:

sudo np         


        
25条回答
  •  不知归路
    2020-11-28 01:45

    Remove Node completely:

      brew uninstall --force node
    

    Install again:

    brew install node;
    which node # => /usr/local/bin/node
    export NODE_PATH='/usr/local/lib/node_modules'
    

提交回复
热议问题