美文网首页
安装指定版本node

安装指定版本node

作者: _浅墨_ | 来源:发表于2024-05-29 10:06 被阅读0次

    使用 nvm 方式安装

    # 安装指定版本node
    nvm install 16.20.2
    
    # 查询已安装版本
    nvm list  
    
    # 切换版本
    nvm use 16.20.2  
    
    # 查询当前在用版本
    node -v
    

    使用 npm 方式安装

    # 清除缓存
    npm cache clean --force
    
    # 切换到官方 NPM 源
    npm config set registry https://registry.npmjs.org
    
    # 移除可能存在问题的依赖和缓存文件
    rm -rf node_modules package-lock.json
    
    # 使用 npm 重新安装
    npm install
    
    # 或者使用 npm 重新安装
    npm install
    

    使用 yarn 方式安装

    npm install -g yarn
    yarn config set registry https://registry.npmjs.org
    yarn install
    

    使用 brew 方式安装

    1. 搜索可安装的node:
    brew search node
    
    1. 选择对应的版本,安装node 或者 node@16
    brew install node
    brew install node@16
    
    1. 验证当前安装的版本
    node -v
    npm -v
    
    1. brew 切换到 node@16 版本:
    brew unlink node
    brew link --overwrite --force node@16
    

    5.再次验证版本

    node -v
    npm -v
    

    6.如果npm -v验证提示:zsh: command not found: npm,则重新安装

    brew uninstall node@16
    brew install node@16
    

    相关文章

      网友评论

          本文标题:安装指定版本node

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