1

大家好,

我正在尝试在 OSX Mavericks 上安装 PyGraphviz 1.2。我刚刚从 Mountain Lion 升级,现在使用命令行工具安装了 Xcode 5.0.1。我已经下载了 PyGraphviz 源包,解压并运行sudo python setup.py install.

我收到以下错误消息(在此之前有一些输出,包括几个警告):

cc -bundle -undefined dynamic_lookup -arch x86_64 -arch i386 -Wl,-F. build/temp.macosx-10.9-intel-2.7/pygraphviz/graphviz_wrap.o -L/usr/local/lib/graphviz -L/usr/local/lib/graphviz -lcgraph -lcdt -o build/lib.macosx-10.9-intel-2.7/pygraphviz/_graphviz.so
ld: library not found for -lcgraph
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'cc' failed with exit status 1

此外,前两行输出是:

library_path=/usr/local/lib/graphviz
include_path=/usr/local/include/graphviz

这让我相信编译器知道在哪里寻找库。

可能是什么问题呢?只是为了说明清楚:出于技术原因,我必须使用 Apple 的 Python 2.7 版本,并且在我的另一台机器上使用 OSX Lion 和 Xcode 4 一切正常......(不确定确切的版本是什么)。

4

1 回答 1

4

我遇到了同样的错误,并通过为 XCode 安装命令行工具来解决它。假设您将 XCode 升级到 5.0.1,您可以通过在终端中键入“xcode-select --install”来安装命令行工具,它会提示您安装命令行工具。

于 2013-10-25T21:17:49.267 回答