在 64 位系统下安装 32 位 electron

一曲冷凌霜 提交于 2020-02-28 00:55:12
  1. 直接 npm 安装
npm install --arch=ia32 electron@1.4.14
  1. 配置 .npmrc
arch=ia32
registry=https://registry.npm.taobao.org
  1. 配置 package.json
{
  "config": {
    "arch": "ia32",
    "registry": "https://registry.npm.taobao.org"
  },
  "devDependencies": {
    "electron": "5.0.2"
  }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!