Xcode Beta“验证Xcode.app”


6

我刚刚安装了Xcode beta,当试图打开它时,它仍然在“验证Xcode.app”并且不继续。这是为什么?我有最新的OS X小牛。


您可以尝试摆脱扩展属性:xattr -cr /path/to/Xcode.app
Mateusz Szlosek 2014年

Answers:


9

打开终端并运行以下命令

cd /Applications
xattr -d com.apple.quarantine Xcode.app

这将绕过OS X中的Gatekeeper并快速启动Xcode。


这对我不起作用,因为我没有Xcode.app开头。我得到:xattr:没有这样的文件:Xcode.app
micahblu 2016年

0

你说你被Xcode beta困住了。那么命令就是

xattr -d com.apple.quarantine /Applications/Xcode\ Beta.app


0

似乎有一个全球性的转换验证com.apple.LaunchService

❯ defaults read com.apple.LaunchServices{
    LSQuarantine = 1;
}

❯ defaults write com.apple.LaunchServices LSQuarantine -bool NO

❯ defaults read com.apple.LaunchServices
{
    LSQuarantine = 0;
}

它应该在重新启动后生效。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.