每当我运行以下命令时:

$ npm install https://registry.npmjs.org/npm/-/npm-1.3.19.tgz:


在phonegap安装期间出现错误。

谢谢
塔伦

最佳答案

也遇到了这个问题。我使用以下解决方案:


使用curl从http://registry.npmjs.org/npm/latest抓取文本
http.*tgz的搜索文本中
将返回错误的tgz引用替换为文本中找到的引用,然后重新运行npm install

关于node.js - $ npm install https://registry.npmjs.org/npm/-//npm-1.3.19.tgz不喜欢的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21433443/

10-11 12:57