skip to Main Content

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]

2

Answers


  1. Chosen as BEST ANSWER
      "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.


  2. Try npx expo install expo-location

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search