Home > Software engineering >  I Install [email protected] globally, then I try to install 'expo install expo-location' it g
I Install [email protected] globally, then I try to install 'expo install expo-location' it g

Time:09-05

The term 'expo' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

this is my global install

 -- [email protected]
 -- **[email protected]**
 -- [email protected]
 -- [email protected]
 -- [email protected]
 -- [email protected]
 -- [email protected]
 -- [email protected]
`-- [email protected]

CodePudding user response:

Try npx expo install expo-location

CodePudding user response:

  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    **"location": "expo install expo-location"**
  }

npm run location After adding this I install the expo-location.

  • Related