在E:\Dokuman Visual Code\react.js\project-app中创建一个新的React应用。
正在安装软件包。这可能需要几分钟的时间。正在安装react、react-dom和react-scripts以及cra-template...
npm ERR! code EBADF
npm ERR! EBADF: bad file descriptor, write
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\FIKCROS\AppData\Local\npm-cache\_logs\2022-04-05T01_02_39_053Z-debug-0.log
Aborting installation.
npm install --no-audit --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.
Deleting generated file... package.json
Deleting project-app/ from E:\Dokuman Visual Code\react.js
Done.
2条答案
按热度按时间icnyk63a1#
我也有同样的问题。对我有用的是:我已经将我的VSCode终端从Powershell更改为bash(重新启动终端应该会有帮助)。
运行以下命令:
1.运行npm高速缓存清理--强制
1.然后运行npx create-react-app(项目名称)
希望这对你有帮助
bmvo0sr52#
为了解决这个问题,我迁移到了Node版本14(创建React应用程序的最低版本),然后重试
1-安装NVM
https://github.com/nvm-sh/nvm
2 -安装节点v14
3 -切换到节点v14
4 -再次重试