Abhishek Vyas
Abhishek Vyas

Reputation: 734

Unable to delete React project folder

I am trying to create react app using following command

npx create-react-app sales

unfortunately its getting stuck at some point or other while installing packages. This time it gets stuck at below package (Ref Images).

enter image description here

enter image description here

After waiting for 5, 10 mins I cancelled the installation (Ctrl+C). But strangely I am not able to delete project folder also.

I also re-installed the node but the problem still persists.

How do I delete the folder?

Upvotes: 0

Views: 2255

Answers (1)

theabrar
theabrar

Reputation: 450

rm -rf sales

If this doesn't work, try using sudo in front

Upvotes: 0

Related Questions