MAC 上运行 npm报错:line 1: react-app-rewired: command not found
从仓库下了前端的项目,运行时报了这个错: line 1: react-app-rewired: command not found
1.网上查了资料,需要安装 create-react-app
解决:
执行命令: sudo npm i -g create-react-app
输入电脑密码后,安装
注意:如果 不加 sudo,可能会报无权限
2.执行 npm install 还报错,报错信息: error ERESOLVE unable to resolve dependency tree
解决:
执行命令:
npm i --legacy-peer-deps
执行完成后,运行工程 npm start,可以正常启动了
参考博客:
https://www.csdn.net/tags/OtTaUgysMTY4NC1ibG9n.html
https://blog.csdn.net/weixin_53798028/article/details/124479201