项目在运行npm install 出现Failed at the canvas@2.8.0 install script错误:
npm ERR! code ELIFECYCLE
 npm ERR! errno 1
 npm ERR! canvas@2.8.0 install: node-pre-gyp install --fallback-to-build
 npm ERR! Exit status 1
 npm ERR!
 npm ERR! Failed at the canvas@2.8.0 install script.
 npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
 npm ERR! C:\Users\guofeng25\AppData\Roaming\npm-cache_logs\2022-01-27T05_54_02_864Z-debug.log
解决办法:
npm install  canvas@2.8.0 --ignore-scripts
 
只要是:npm ERR! Failed at the XXX@X.X.X install script 这种错误
 都可以:npm install XXX@X.X.X --ignore-scripts进行更改









