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

前端之家收集整理的这篇文章主要介绍了ubuntu上安装并使用nvm管理node版本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

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

首先安装必要的包。

view plain copy

sudoapt-getupdate

sudoapt-getinstallbuild-essentiallibssl-dev

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

通过curl:

view plain copy

curl-o-https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh|bash

通过wget:

view plain copy

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使用系统版本。

参考:http://blog.csdn.net/shidaping/article/details/52218278

原文链接:https://www.f2er.com/ubuntu/353048.html

猜你在找的Ubuntu相关文章