如何卸载纱线?我已经将它用于一个react-native项目,现在每当我将代码移出index.ios.js或index.android.js时,它都会抛出一个错误,所以我只想使用npm,但每当我初始化一个react-native项目时,它默认为yarn。我尝试了npm卸载yarn,但没有工作。谢谢。


当前回答

windows用户:

NPM卸载yarn

Mac用户:

$ NPM卸载yarn

它将完全为您的系统除去纱线。

其他回答

我必须手动从驱动器中删除Yarn文件夹,然后再次运行npm uninstall -g Yarn重新安装它。这对我很管用。

在windows的情况下,执行npm uninstall -g yarn后,仍然如果yarn没有卸载,然后转到“C:\Users\username\AppData\Local”并删除yarn文件夹。

关闭cmd并重新打开cmd并执行yarn。它会告诉你“yarn”不是内部或外部命令、可操作程序或批处理文件。

Windows:

我需要做这些步骤,以完全去除纱线从系统。

Go to add or remove programs and then search for yarn and uninstall it(if you installed it with the .msi) npm uninstall -g yarn (if you installed with npm) Remove any existing yarn folders from your Program Files (x86) (Program Files (x86)\Yarn). Also need to delete your Appdata\local\yarn folder ( type %LOCALAPPDATA% in the run dialog box (win+R), it opens a local folder and there you'll find the yarn folder to delete) Finally,check your user directory and remove all .yarn folder, .yarn.lock file, .yarnrc etc ( from C:\Users\<user>\)

只要复制这个命令,您的问题就会得到解决。

NPM脱纱

没有看到对我有用的答案,所以它是:在我的OSX系统上,我在~/.yarn/bin/yarn找到了yarn。Rm -rf ~/。纱处理了它。