如何在 ubuntu 中升级节点?
Posted
技术标签:
【中文标题】如何在 ubuntu 中升级节点?【英文标题】:How to upgrage node in ubuntu? 【发布时间】:2018-09-27 09:08:41 【问题描述】:我无法在 Ubuntu 中安装节点版本 4.7,当我升级节点时,它显示节点 4.2.6 已经是最新版本。 我需要安装 npm ,只有 node 4.7 或更高版本才允许安装 npm。
【问题讨论】:
updating nodejs on ubuntu 16.04的可能重复 【参考方案1】:你可以试试这个……
Upgrading to the latest stable version
This will update you to the latest available stable version:
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
Upgrading to the latest LTS version
Node also offers a long-term support (LTS) version. If you need that version (or any other), simply specify the version number you want:
sudo npm cache clean -f
sudo npm install -g n
sudo n 4.4.2
Checking your Node version
To see which version of Node is currently installed, simply run:
node -v
【讨论】:
我的node版本是4.2.6,npm只支持4.7或更高版本。所以我不能按照你的建议使用命令。 你能否列出你使用的命令从必要的输出开始以上是关于如何在 ubuntu 中升级节点?的主要内容,如果未能解决你的问题,请参考以下文章
如何从Ubuntu 16.10升级到Ubuntu 17.04