Reputation: 65
I execute the command:
npx create-react-app opencord
After doing so this error shows up:
What can I do?
Upvotes: 3
Views: 800
Reputation: 48
I have resolved this problem o Linux by deleting the npm cache folder /home/<user>/.npm/
.
You might be able to resolve this on Windows by deleting the folder C:\Users\<user>\AppData\npm-cache\
.
Apparently you can reach the same result by running the command npm cache clean
as well. (You might need to use --force
flag)
Upvotes: 1