Uninstalling Expo CLI

Judd R picture Judd R · Sep 24, 2018 · Viewed 47.5k times · Source

I have installed Expo CLI globally and cant start a new react native app without using expo cli and therefore would like to uninstall it from my system. I have spent hours trying to work out how to removeit globally from my system

Answer

Amir133 picture Amir133 · Dec 15, 2019

To completely uninstall expo cli

On Windows

  • The first step use this in cmd npm -g uninstall expo-cli --save
  • Second go to <windwos drive>\Users\<yourUser>\ and then remove .expo folder

On Mac OS Catalina

  • The first step npm -g uninstall expo-cli --save && yarn global remove expo-cli

  • Second cd ~ && rm -rf .expo

Thanks to @Александр Наумкин and @Liko for editing and comments