Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试使用为节点 v0.6.2 安装 npm
$ curl http://npmjs.org/install.sh
但遇到来自 cURL 的错误说,
curl: (2) Failed initialization.
我也尝试了 cURL 其他链接,但同样的错误不断出现。我试过谷歌它,但找不到任何好的解决方案来解决这个错误。请帮助我解决此问题或以其他方式安装 npm。
PS - 我使用的是 Ubuntu 10.04,并且我之前配置了 npm,但将其卸载。
我尝试了 curl 并得到了以下响应。
<html>Moved: <a href="https://npmjs.org/install.sh">https://npmjs.org/install.sh</a>
看起来他们将文件移动到了 https 服务器。
因此,您需要在使用提供的链接 url 上运行 curl:
curl https://npmjs.org/install.sh > install.sh
这会将结果发送到一个名为 install.sh 的文件