I'm certain this is a very basic question, but it's causing me a lot of issues.

I'm trying to install MySQLdb with Python 2.7, the error I'm getting looks like this:

gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/include/mysql -I/opt/python2.7/include/python2.7 -c _mysql.c -o build/temp.linux-x86_64-2.7/_mysql.o -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64
gcc -pthread -shared build/temp.linux-x86_64-2.7/_mysql.o -L/usr/lib64/mysql -L. -lmysqlclient_r -lz -lpthread -lcrypt -lnsl -lm -lpthread -lmygcc -lpython2.7 -o build/lib.linux-x86_64-2.7/_mysql.so
/usr/bin/ld: cannot find -lpython2.7
collect2: ld returned 1 exit status
error: command 'gcc' failed with exit status 1

Clearly, it can't find Python 2.7. Looking in /usr/bin I see:

python* python2@ python2.4* python2.7@

What does the @ symbol mean? Can anyone advise a remedy to the error?

link|improve this question

78% accept rate
1  
you probably need the python-dev package (not related with the @) – JBernardo Dec 6 '11 at 13:02
Don't think you want the Python binary. Looks like you need the Python .o files since this is linking. – Ishpeck Dec 6 '11 at 13:05
feedback

1 Answer

up vote 5 down vote accepted

It can't find the Python library, not the executable. Run locate libpython2.7.a to see where your Python library is located, and add it to the library path (e.g. if it is in /opt/python2.7/lib, you want to call LDFLAGS="-L/opt/python2.7/lib" make).

The @ symbol means the file is a symbolic link; * means it's executable (these are produced by ls -F, which you might have as an alias).

link|improve this answer
Thanks for the response Petr, that's very informative. The two locations I have after running locate are: /opt/python2.7/lib/python2.7/config/ /usr/src/python2.7/Python-2.7.2/ After running LDFLAGS="-L/[path]" on both of these locations I'm still getting the same error. There's no discernible change in /usr/bin either. – Mike Dec 6 '11 at 13:51
Hmm... Are you maybe running it as a command? You shouldn't, it's setting an environment variable, as in LDFLAGS="-L/opt/python2.7/lib/python2.7/config/" ./configure or LDFLAGS="-L/opt/python2.7/lib/python2.7/config/" make (I don't know how MySQLdb is built exactly) – Petr Viktorin Dec 6 '11 at 14:43
Ah, perfect! Thank you, sorry for my misunderstanding. – Mike Dec 6 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.