在安装electron的时候,一直卡在node install.js不动😭,翻了墙也不行,于是在 github 上搜索终于找到解决方法,为此记录下来📝
install.js
,里面的下载是依赖于electron-download
这个模块
搜索electron-download发现:👇
解决方法:
打开终端,输入vi ~/.npmrc
,在里面添加
electron_mirror="https://npm.taobao.org/mirrors/electron/"
再试一次npm install electron -g
,这次就成功了😄
网友评论