本文主要是介绍npm i --legacy-peer-deps,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
1、原因:npm 升级到 7.x以上后,会出现上游依赖冲突;–legacy-peer-deps:安装时忽略所有 peerDependencie,默认使用npm 4-6版本的安装模式,安装过程中是会跳过对等依赖项。
ERROR: Failed to set up Chromium r756035! Set "PUPPETEER_SKIP_DOWNLOAD" env variable to skip download.
npm i puppeteer --ignore-scripts
2、报错无法安装chromedriver的问题
npm install --ignore-scripts
这篇关于npm i --legacy-peer-deps的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!