Issue
I have followed the documentation from Expo website, installed NodeJs, git, watachmann, however I m still getting errors when installing Expo cli:
href="https://i.stack.imgur.com/PBT7E.png" rel="nofollow noreferrer">
Solution
First, ensure you use the recommended version of nodejs. For that, you can use the n module:
// if you haven't installed it before
sudo npm install n -g
//to have the latest stable version
sudo n stable
Then delete all your preview installs with npm
and start over. For expo-cli
:
sudo npm uninstall --global expo-cli
sudo npm install --global expo-cli
Answered By - yousoumar
Answer Checked By - - Jay B. (ReactFix Admin)