To completely uninstall expo cli
On Windows
- The first step
npm -g uninstall expo-cli --save
(alsoyarn global remove expo-cli
if you use yarn). - Second
cd %USERPROFILE% && rmdir /Q /S .expo
On Mac OS Catalina
-
The first step
npm -g uninstall expo-cli --save
(alsoyarn global remove expo-cli
if you use yarn). -
Second
cd ~ && rm -rf .expo
Thanks to @Александр Наумкин and @Liko for editing and comments