gpt4 book ai didi

node.js - 正确安装 Node

转载 作者:太空宇宙 更新时间:2023-11-04 02:05:24 25 4
gpt4 key购买 nike

我的理解是,NVM 是比 Homebrew 安装和管理 Node 版本的首选方式。我安装了几个带有 NVM 的 Node 版本。但看起来 Homebrew 安装仍然存在。我尝试了 brew uninstall Node ,但收到错误

Error: Refusing to uninstall /usr/local/Cellar/node/8.0.0_1
because it is required by babel 6.24.1, yarn 0.24.6, which are
currently installed.
You can override this and force removal with:
brew uninstall --ignore-dependencies node

最佳答案

您有两个由 Homebrew 安装的软件包(babel 和yarn),它们依赖于node。您有两个选择:

1)你不再需要 babel 和yarn了。您可以通过以下方式删除它们:

brew uninstall babel
brew uninstall yarn

然后您将能够删除 Homebrew 安装的 Node 版本:

brew uninstall node

2) 你想保留 babel 和yarn。这两个包都依赖于 Node 。如果您安装带有 nvm 的 Node 版本,它们将依赖于这个新版本。因此,您可以使用以下命令卸载 Homebrew 版本:

brew uninstall --ignore-dependencies node

关于node.js - 正确安装 Node ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44528610/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com