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
To completely uninstall expo cli
On Windows
npm -g uninstall expo-cli --save
<windwos drive>\Users\<yourUser>\
and then remove .expo
folderOn 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