How Do I Uninstall Yarn
问题 How can I uninstall yarn? I've used it for a react-native project and now whenever I move the code out of index.ios.js or index.android.js it throws an error so I'd like to just use npm but whenever I initialize a react-native project it defaults to yarn. I tried npm uninstall yarn but that didn't work. Thanks. 回答1: Depends on how you installed it : brew : brew uninstall yarn tarball : rm -rf "$HOME/.yarn" npm : npm uninstall -g yarn ubuntu : sudo apt-get remove yarn && sudo apt-get purge