Sureshkumar M
Sureshkumar M

Reputation: 31

I can't create a react-native project?

I installed react native cli and other packages, but can't create a react native project?

-bash: react-native: command not found

My terminal process screenshot added.

Upvotes: 0

Views: 875

Answers (2)

Devon Rusinek
Devon Rusinek

Reputation: 19

I was having a lot of trouble with this, as none of the other answers provided were working. The top answer here was what allowed me to get through my problem: npm global path prefix.

If you get a subsequent EACCES permissions problem, use this so as to not having to go back to square one to fiddle with the npm default directory again:

sudo npm install -g --unsafe-perm=true --allow-root

Upvotes: 0

Ali SabziNezhad
Ali SabziNezhad

Reputation: 3118

You have to install react native cli in global. You can use this to do that

npm install react-native-cli -g

Upvotes: 1

Related Questions