我已经启动了一个UbuntuAWS EC2实例,并希望安装节点10.13.0。
我检查了以下内容:
sudo apt-get update
sudo apt-cache madison nodejs
这只列出8.x的版本。所以我这样做:
curl -sL https://deb.nodesource.com/setup_10.13.0 | sudo -E bash -
这给了我这个错误:
bash: line 1: html: No such file or directory
bash: line 2: syntax error near unexpected token `<'
'ash: line 2: `<head><title>404 Not Found</title></head>
在线文档说只要做到这一点:
sudo apt-get install nodejs
但这不允许我指定版本号。我甚至尝试过:
sudo apt-get install nodejs=10.13.0
这给了我这个错误:
Version '10.13.0' for 'nodejs' was not found
我如何通过几个简单的命令来实现这一点?请注意,LTS构建目前是10.14.0,我想要10.13.0。