日常开发之10 [email protected] install: `node-pre-gyp install --fallback-to-build --update-binary`

使用npm i 下载依赖的时候,报错

日常开发之10 canvas@2.9.3 install: `node-pre-gyp install --fallback-to-build --update-binary`_第1张图片

报错canvas下载失败,提示更新二进制文件
1、可能是因为使用镜像地址没有找到改canvas文件,可以执行:
npm install canvas --canvas_binary_host_mirror=https://registry.npmmirror.com/-/binary/canvas
进行下载
2、可能是package-lock.json中的版本不对,删除改文件后,执行npm uninstall canvas 后,重新下载执行npm install [email protected]
或者 npm install [email protected] --canvas_binary_host_mirror=https://registry.npmmirror.com/-/binary/canvas

你可能感兴趣的:(前端)