在ubuntu 17.04中安装Nodejs v8.2.1

时间:2017-08-08 19:50:53

标签: node.js ubuntu

如何在Ubuntu 17.04中安装Nodejs v8.2.1。当我发出命令' sudo app install nodejs'安装的版本是v4.7.2。 - 谢谢

2 个答案:

答案 0 :(得分:3)

NodeJS本身有一篇很好的文章(通过搜索“install node js ubuntu”找到)。你可以找到它here

您只需执行以下命令即可获得最新的NodeJS版本。

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs

我还建议安装nvm,这样你就可以并排运行多个NodeJS版本。

答案 1 :(得分:0)

使用节点版本管理器NVM

$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
$ nvm install node
$ node -v