问题
今天 使用 electron-react-boilerplate
的时候,出现下面的问题:
Building fresh packages...
[-/5] · waiting...
[-/5] · waiting...
[3-5] · electron
解决方法
首先在项目的根目录下新建 .yarnrc
文件,在文件中新增如下内容:
registry "https://registry.npm.taobao.org"
sass_binary_site "https://npm.taobao.org/mirrors/node-sass/"
phantomjs_cdnurl "http://cnpmjs.org/downloads"
electron_mirror "https://npm.taobao.org/mirrors/electron/"
sqlite3_binary_host_mirror "https://foxgis.oss-cn-shanghai.aliyuncs.com/"
profiler_binary_host_mirror "https://npm.taobao.org/mirrors/node-inspector/"
chromedriver_cdnurl "https://cdn.npm.taobao.org/dist/chromedriver"
安装调试问题
- 检查系统是否已经安装好所依赖的环境(Visual C++ 和 Python 2.7)
- 若没有,则以管理员身份运行
npm install --global --production windows-build-tools
,安装所有使用微软的必需的工具和配置 windows 的构建工具。 - 安装好后,删除
node_modules
文件夹,执行命令yarn cache clean && yarn
。
网友评论