gpt4 book ai didi

npm - 卸载 npm 包后出错

转载 作者:行者123 更新时间:2023-12-04 10:58:24 28 4
gpt4 key购买 nike

我已经使用以下命令卸载了 npm 包“grunt-cli”和“tsd”:

sudo npm uninstall -g grunt-cli 
sudo npm uninstall -g tsd

但是现在,当我列出所有 npm 包时:

npm -g ls --depth=0

我收到这个错误。没有这样的文件或目录。这是正确的,因为我刚刚卸载了它们...

/usr/local/lib
├── bower@1.7.1
├── browserify@12.0.1
├── express-generator@4.13.1
├── error: ENOENT: no such file or directory, open '/usr/local/lib/node_modules/grunt-cli/package.json
├── npm@3.5.3
├── error: ENOENT: no such file or directory, open '/usr/local/lib/node_modules/tsd/package.json
└── typescript@1.8.9

为什么会出现此错误?如何完全删除 grunt-cli 和 tsd? ENOENT 是什么意思? (尝试用谷歌搜索...)

最佳答案

尽管您运行了 npm uninstall 命令,但以下目录可能仍然意外存在。

  • /usr/local/lib/node_modules/grunt-cli
  • /usr/local/lib/node_modules/tsd

在这种情况下,您需要通过rm -r 命令手动删除它们:

$ rm -r /usr/local/lib/node_modules/tsd
$ rm -r /usr/local/lib/node_modules/grunt-cli

此外,您应该检查命令别名是否仍然存在。命令名称是 tsdgrunt , 只需检查并删除它们(如果存在)。

$ which tsd <= check command path
/usr/local/bin/tsd <= if it exist
$ rm /usr/local/bin/tsd <= remove it

$ which grunt <= check command path
/usr/local/bin/grunt <= if it exist
$ rm /usr/local/bin/grunt <= remove it

关于npm - 卸载 npm 包后出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36477850/

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