我该如何移除Xcode插件?

8
每次在Xcode中使用git时,都会出现以下消息:
2017-03-31 12:42:40.749 xcodebuild[27773:374610] [MT] DVTPlugInManager: Required plug-in compatibility UUID DFFB3951-EB0A-4C09-9DAC-5F2D28CC839C for KSImageNamed.ideplugin (com.ksuther.KSImageNamed) not present
2017-03-31 12:42:40.943 xcodebuild[27773:374610] [MT] PluginLoading: Required plug-in compatibility UUID DFFB3951-EB0A-4C09-9DAC-5F2D28CC839C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/VVDocumenter-Xcode.xcplugin' not present in DVTPlugInCompatibilityUUIDs
2017-03-31 12:42:40.945 xcodebuild[27773:374610] [MT] PluginLoading: Required plug-in compatibility UUID DFFB3951-EB0A-4C09-9DAC-5F2D28CC839C for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin' not present in DVTPlugInCompatibilityUUIDs

KSImageVVDocumentAlcatraz插件是我安装Xcode 7.3时自带的。这很烦人,我想要停止输出它们的内容。我该如何删除这些插件?


1
你可以前往目录 ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/ 查看插件。 - ridvankucuk
1
@ridvankucuk - 在XCode 14,macOS 12.6上没有这样的目录,感谢苹果。他们每个Xcode版本都会移动这个垃圾。 - Duck
2个回答

8

我在使用Xcode 9时仍然遇到了这个问题。为了解决这个问题,我删除了我所有的插件。它们自Xcode 8开始就停止工作了。

cd ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/

使用ls命令检查已安装的插件,然后使用rm -r <plugin-name>命令删除它(们)。


3
在XCode 14,macOS 12.6上,感谢Apple,没有这样的目录。他们每个Xcode版本都会移动这些垃圾文件。 - Duck

2
在 Xcode 13 或 macOS 12 中,它是这样的:
~/Library/Developer/Xcode/Plug-ins/

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接