Home > Software engineering >  Why does this say permission denied?
Why does this say permission denied?

Time:10-23

I created a react app and it did not install all the packages. So I did which create-react-app command on my terminal and it returned me /usr/local/bin/create-react-app so I ran rm -rf /usr/local/bin/create-react-app command but it returned me with permission denied. What should I do to not to allow it?

CodePudding user response:

Run command as a super user

sudo rm -rf /usr/local/bin/create-react-app

  • Related