如何卸载纱线?我已经将它用于一个react-native项目,现在每当我将代码移出index.ios.js或index.android.js时,它都会抛出一个错误,所以我只想使用npm,但每当我初始化一个react-native项目时,它默认为yarn。我尝试了npm卸载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>\)
其他回答
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>\)
如果你安装了brew,尝试在终端提示下卸载yarn。还记得在.bash_profile中删除纱线路径信息。
我尝试了sospedra发布的Homebrew和tarball points。这还不够。
我发现yarn安装在~/.config/yarn/global/node_modules/yarn
我跑纱线全球除去纱线。重新启动终端,它消失了。
最初,我来这里是因为yarn恢复到旧版本,但我不知道为什么,尝试卸载或升级失败。
当我检出某个项目的旧分支时,使用的yarn版本从1.9.4变成了0.19.1。
即使在采取步骤去除纱线后,它仍然保持在0.19.1。
我必须手动从驱动器中删除Yarn文件夹,然后再次运行npm uninstall -g Yarn重新安装它。这对我很管用。
如果在你的系统上,Yarn是由Node.js通过corepack提供的,那么,你可以选择你想要使用的Yarn版本,如下所述:
Corepack准备yarn@x.y.z—激活
- https://nodejs.org/api/corpac.html #升级全球版本
推荐文章
- 错误:无法找到模块“webpack”
- 在node.js中使用async / await文件系统
- NodeJS -用NPM安装错误
- 如何为本地安装npm包设置自定义位置?
- 回调函数来处理管道的完成
- Express函数中的“res”和“req”参数是什么?
- node.js TypeError:路径必须是绝对路径或指定根路径到res.sendFile[解析JSON失败]
- Passport.js -错误:序列化用户到会话失败
- Node.js vs .Net性能
- 从电子应用程序中删除菜单栏
- 如何用node.js实现一个安全的REST API
- 如何处理Node.js中的循环依赖
- 在猫鼬,我如何排序的日期?(node . js)
- 如何在Node.js内进行远程REST调用?旋度吗?
- 如何用分发文件发布npm包?