我遵循 Heroku 的教程来部署一个 Django 应用程序: http://devcenter.heroku.com/articles/django#prerequisites。
一切正常,直到我说到这里:
$ pip install Django psycopg2
我可以自己安装姜戈,但问题在于心理战2。
我一直得到这个错误:
ld: library not found for -lpq
collect2: ld returned 1 exit status
ld: library not found for -lpq
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/_4/p6l0y0t51hd4xbq7llbyshmw0000gn/T//cc0L10mI.out (No such file or directory)
error: command 'gcc-4.2' failed with exit status 1
我已经在我的机器上安装了 PostgreSQL 9.1。
另外,在输出中,有一些类似于下面这样的行:
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.4.4 (dt dec pq3 ext)" -DPG_VERSION_HEX=0x090004 -DPSYCOPG_EXTENSIONS=1 -DPSYCOPG_NEW_BOOLEAN=1 -DHAVE_PQFREEMEM=1 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -I. -I/usr/include -I/usr/include/postgresql/server -c psycopg/typecast.c -o build/temp.macosx-10.6-intel-2.7/psycopg/typecast.o
我真的不知道它是什么意思,但我注意到它有“ macosx-10.6”在里面,所以我想知道这是否是问题所在?我在10.7。
先谢谢你的帮助。