1

我正在尝试在 mac os 上使用 Geodjango,我使用 postgresql 并安装了 GEOS,但出现此错误:

dlopen(/usr/local/lib/libgeos_c.dylib, 6): no suitable image found.  Did find:
/usr/local/lib/libgeos_c.dylib: mach-o, but wrong architecture

任何的想法?

谢谢

4

1 回答 1

0

好的,我有我的答案。我的 MAMP 使用 32 位 Python,我为 64 位 Python 编译了我的库。

所以我为 32 位 Python 重新编译了它。为此,我在库文件夹中使用了这些命令:

export CFLAGS=-m32
export CXXFLAGS=-m32

./configure
make
make install
于 2011-07-04T13:27:26.877 回答