首先我用命令安装了带终端的节点 更新包管理器
sudo apt-get update
添加NodeJS PPA
sudo apt-get install python-software-properties
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
安装NodeJS和NPM
sudo apt-get install nodejs
它有效,但是当我查看版本节点时,我看到节点v 4 然后我使用谷歌搜索这个问题,并找到了这个主题 https://stackoverflow.com/a/43914369 使用ln命令在两个文件之间创建符号链接
并使用此指令进行手动安装,但没有任何反应,出现错误而不安装 Look at this screenshot 也许我做错了什么?
答案 0 :(得分:0)
我倾向于避免使用我的操作系统的软件包管理器来安装节点。安装节点的最简单方法是Node Version Manager。
答案 1 :(得分:0)
呀!在官方网站上找到的解决方案 当然是链接Install node version 6
答案 2 :(得分:0)
请你检查一下:
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y build-essential
但为此您需要安装curl。
sudo apt-get update
安装curl:sudo apt-get install curl
Here是此链接。
将节点升级到最新版本:https://askubuntu.com/questions/426750/how-can-i-update-my-nodejs-to-the-latest-version#480642