我正在尝试在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
有什么想法吗?
谢谢
答案 0 :(得分:0)
好的,我有答案。我的MAMP使用32位Python,我为64位Python编译了我的库。
所以我为32位Python重新编译它。为此,我在库文件夹中使用了这些命令:
export CFLAGS=-m32
export CXXFLAGS=-m32
./configure
make
make install