当我尝试在我的React应用中运行npm start时,出现此错误:
$ npm start
> trends@0.1.0 start C:\Users\Administrateur.TEST\Desktop\reactProjects\trends
> react-scripts start
'react-scripts' n’est pas reconnu en tant que commande interne
ou externe, un programme exécutable ou un fichier de commandes.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! trends@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the trends@0.1.0 start 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\Administrateur.TEST\AppData\Roaming\npm-cache\_logs\2020-07-20T07_09_04_578Z-debug.log
我尝试了其他解决方案,例如使用清理缓存,删除node_modules并再次运行npm install,但仍然得到相同的ERROE
答案 0 :(得分:0)
我建议执行以下三个步骤:
npm install -g npm@latest
更新npm,因为有时会出现问题。node_modules
文件夹。npm install
重新安装项目依赖项。答案 1 :(得分:0)
我通过在PATH系统变量中添加C:\ Windows \ System32 \来解决此问题