我试图通过终端安装npm,但我到处找到的说明并不起作用。
这就是我所看到的:
192:~ Home$ curl http://npmjs.org/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 193 100 193 0 0 892 0 --:--:-- --:--:-- --:--:-- 893
sh: line 1: html: No such file or directory
sh: line 2: syntax error near unexpected token `<'
'h: line 2: `<head><title>301 Moved Permanently</title></head>
据我所知,所有信息都是正确的。当然,我对大多数这些东西都是新手......
我做错了什么 - 或者我是否需要从其他地方下载?
答案 0 :(得分:2)
使用-L
标记使curl
遵循HTTP重定向。
curl -L http://npmjs.org/install.sh | sh