nvm(node版本管理器)

ubuntu上安装并使用nvm管理node版本

nvm是一个非常不错的node版本管理器,类似于ruby的rvm。

其github地址为https://github.com/creationix/nvm

此处介绍一下如何在ubuntu上安装使用nvm。

首先安装必要的包。

[plain] view plain copy

1.   sudo apt-get update  

2.   sudo apt-get install build-essential libssl-dev  



然后安装nvm的脚本,有两种方法curl或wget:

通过curl:

[plain] view plain copy

通过wget:

[plain] view plain copy

1.   wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash  

检查安装及使用:

注意,此处需要重启terminal终端才能生效。

使用nvm --help查看是否安装成功。

使用nvm ls查看已经安装的版本。

使用nvm ls-remote查看所有远端版本。

使用nvm install安装某个版本,如nvm install v5.3.0。

使用nvm use切换到某个版本,如nvm use v5.3.0使用5.3.0,nvm use system使用系统版本。


猜你喜欢

转载自blog.csdn.net/qq_29726869/article/details/80797276