Mac- npm 安装与更新

作者: 喵了个咪O_O | 来源:发表于2018-06-04 09:55 被阅读2222次
    1. 安装homebrew
    2. 安装npm
    $  brew install npm 
    
    1. 查看npm的最新版本
    $  npm -g outdated
    
    npm的最新版本.png
    1. 更新到最新的版本
    $  sudo npm -g install npm@6.1.0
    
    1. 若更新过程中报错, 将这个路径下面的.npm.DELETE文件夹删除, 重新安装即可
    ENOTEMPTY: directory not empty, rename '/usr/local/lib/node_modules/npm' -> '/usr/local/lib/node_modules/.npm.DELETE'
    
    1. 这个过程中也可能会遇到下面的错误
    -bash: /usr/local/bin/npm: No such file or directory
    

    执行下面的四句命令, 重新安装一下node即可

    $ brew update
    $ brew uninstall node
    $ brew install node
    $ sudo brew postinstall node 
    # brew error message provided this recommendation; only worked with sudo
    

    相关文章

      网友评论

        本文标题:Mac- npm 安装与更新

        本文链接:https://www.haomeiwen.com/subject/muresftx.html