Create React App not installing, showing an error and aborting installation

后端 未结 16 1370
一生所求
一生所求 2021-01-04 13:12

I Reinstalled Node.js and Yarn. Now I am getting this error.

My environment information is:

Node: v8.12.0

NPM: 6.4.1

Yarn: 1.10.1

16条回答
  •  逝去的感伤
    2021-01-04 13:29

    I had a same problem then i tried the below Command and it fixed my issue

    npm cache clean --force
    

    The above command didn't solved your problem then try the below one.

    npm init -y
    npx create-react-app your-app-name
    

提交回复
热议问题