node 版本管理(windows/linux)

windows

下载

Releases · coreybutler/nvm-windows · GitHub

查看版本 nvm --version

查看已经安装的版本  nvm ls

安装指定版本  nvm install 5.8.0

node 版本管理(windows/linux)_第1张图片

卸载制定的版本 nvm uninstall 5.8.0

node 版本管理(windows/linux)_第2张图片

切换使用指定的版本 nvm use 14.21.3 

node 版本管理(windows/linux)_第3张图片

linux

下载  https://github.com/nvm-sh/nvm/tags

  将下载好的文件复制到linux系统指定的文件夹下,然后执行以下命令进行解压。

            mkdir -p /.nvm

            tar -zxvf nvm-0.39.5.tar.gz -C /.nvm

        环境配置

            vim ~/.bashrc

            在~/.bashrc的末尾,添加如下语句:

            export NVM_DIR="/.nvm/nvm-0.39.5"

            [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm

            [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

node 版本管理(windows/linux)_第4张图片

        使能配置:

            source ~/.bashrc

        测试验证

            nvm -v

你可能感兴趣的:(nodejs,javascript)