5

根据Kenneth Reitz的建议,我在我的 MAC OS X 10.7.4 上安装了“xcode-lite”(即 xcode 的命令行工具 (CLT))。

但是,brew install macvim给了我这个错误:

xcode-select: Error: No Xcode is selected. Use xcode-select -switch /Applications/Xcode.app to select /Applications/Xcode.app, or see the xcode-select manpage (man xcode-select) for further information.

我没有xcodebuild/Applications。我也没有/Developer目录。我有/usr/bin/xcodebuild,但是

xcode-select -switch /usr/bin
brew install macvim

给我这个错误:

Error: Can't run /usr/bin/usr/bin/xcodebuild (no such file).

此外,试图强迫它寻找xcodebuildin/usr/bin会使 brew 无限期地挂起。所以我被困住了。

我在一些地方读到 CLT for xcode 不够好,我需要下载完整版的 xcode (1.5GB)。其他一些人声称 brew 确实可以与 CLT for xcode 一起使用,但是几个小时的尝试brew install macvim(以及大量的谷歌搜索)并没有产生任何结果。我一定遗漏了一些关于 brew 和 CLT for xcode 的基本知识。我真的需要完整的 xcode 还是我的 xcode 的 CLT 没有安装在正确的目录中?

ps:我想brew它而不是安装二进制目录的原因是因为我想用python开发特性来构建它。如果有一种更简单的方法可以让 macvim 与 python-dev 集成,我很乐意这样做。

4

2 回答 2

2

我下载了完整版的 xcode(差不多 2GB),然后 brew install macvim 工作了。不幸的是,brew 不适用于 xcode 的 CLT。

后来我遇到了一些小问题。一个问题是 macvim 正在获取 python 的系统版本(2.7.1),而我需要它来使用我下载的版本(2.7.3)。我必须 brew remove macvim,brew edit macvim,让 macvim 引用正确的 python 版本并使用 brew install python 重建。

我必须说这是一项艰巨的练习!但现在我的 macvim 可以很好地用于 python 开发

于 2012-09-13T07:07:29.173 回答
1

就像@LloydDewolf 提到的那样,需要完整安装 Xcode。除非您需要 macvim brew 版本的特定内容(如 python 开发功能),否则您可以从 .dmg 或源代码安装。

user@mac:~$ brew install macvim
Warning: A newer Command Line Tools for Xcode release is available
You should install the latest version from: http://connect.apple.com
A full installation of Xcode.app is required to compile this software.
Installing just the Command Line Tools is not sufficent.
Error: An unsatisfied requirement failed this build.

这与以下开放的 github 问题有关:https ://github.com/mxcl/homebrew/issues/15111

于 2013-04-26T14:39:48.360 回答