我正在创建一个新的电子应用程序,现在需要在其中安装电子包装程序。
node -v v10.16.0和npm -v v6.9.0
(我都更新了)
我尝试运行此命令:
npm install electron-packager --save-dev
这:
npm install electron-packager -g
错误:
npm ERR! code E404
npm ERR! 404 Not Found - GET http://registry.npmjs.org/electron-packager
npm ERR! 404
npm ERR! 404 'electron-packager@latest' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
我该怎么办?
谢谢!
答案 0 :(得分:1)
如果您指定操作系统,那就更好了。 我曾经遇到过这个问题,并将节点降级到v8.0可以解决此问题。
但是,我强烈建议您使用electronic-builder(https://github.com/electron-userland/electron-builder)而不是electronic-packager来创建安装程序包,因为使用包括内置自动更新功能在内的更多选项会更加容易。