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

后端 未结 16 1600
一生所求
一生所求 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:25

    I had same issue and solved it by:

    Installing latest version of node, npm and yarn.

    npm install -g npm@latest
    nvm install node
    npm install -g yarn

    nvm installs Node.js and npm manages packages.

提交回复
热议问题