2016-07-29 27 views
0

Ich versuche pubnub Bibliotheken zu installieren und ich den Fehler, wenn ich pip installiere pubnubpip pubnub installieren wirft ‚gcc‘ Fehler fehlgeschlagen

Compiling support for Intel AES instructions 
building 'Crypto.Hash._MD2' extension 
creating build/temp.linux-x86_64-2.7 
creating build/temp.linux-x86_64-2.7/src 
gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DLTC_NO_ASM -DHAVE_CPUID_H -Isrc/ -I/usr/include/python2.7 -c src/MD2.c -o build/temp.linux-x86_64-2.7/src/MD2.o 
gcc -pthread -shared build/temp.linux-x86_64-2.7/src/MD2.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/Crypto/Hash/_MD2.so 
/usr/bin/ld: cannot find -lpython2.7 
collect2: error: ld returned 1 exit status 
error: command 'gcc' failed with exit status 1 

Dies sind die Schritte, die ich

curl -O https://bootstrap.pypa.io/get-pip.py 
sudo python27 get-pip.py 
sudo yum install git 
git clone https://github.com/pubnub/python && cd python/python 
sudo update-alternatives --config python 
sudo yum install python-devel 
sudo yum install gcc 

gefolgt Danke

Antwort

2

Die Lösung für dieses, hatte ich diese Schritte für Python und herauszufinden, was seine zeigt auf

ld -lpython2.7 --verbose 

attempt to open /usr/x86_64-amazon-linux/lib64/libpython2.7.so failed 
attempt to open /usr/x86_64-amazon-linux/lib64/libpython2.7.a failed 
attempt to open /usr/local/lib64/libpython2.7.so failed 
attempt to open /usr/local/lib64/libpython2.7.a failed 
attempt to open /lib64/libpython2.7.so failed 
attempt to open /lib64/libpython2.7.a failed 
attempt to open /usr/lib64/libpython2.7.so failed 
attempt to open /usr/lib64/libpython2.7.a failed 
attempt to open /usr/x86_64-amazon-linux/lib/libpython2.7.so failed 
attempt to open /usr/x86_64-amazon-linux/lib/libpython2.7.a failed 
attempt to open /usr/lib64/libpython2.7.so failed 
attempt to open /usr/lib64/libpython2.7.a failed 
attempt to open /usr/local/lib/libpython2.7.so failed 
attempt to open /usr/local/lib/libpython2.7.a failed 
attempt to open /lib/libpython2.7.so failed 
attempt to open /lib/libpython2.7.a failed 
attempt to open /usr/lib/libpython2.7.so failed 
attempt to open /usr/lib/libpython2.7.a failed 

prüfen ldconfig Softlink folgen

ldconfig -p | grep python2.7 

libpython2.7.so.1.0 (libc6,x86-64) => /usr/lib64/libpython2.7.so.1.0 

Das zeigt, dass es nach einem falschen Softlink gesucht hat und ich die s geändert habe oft Link wie diesen

sudo ln -s /usr/lib64/libpython2.7.so.1.0 /usr/lib64/libpython2.7.so 

und dann wie diese

musste laufen pip
sudo /usr/local/bin/pip install pubnub -- Location of pip installed 

Ziemlich Arbeitete Gut

3

Sie müssen Python-Header-Dateien installieren. Wie Sie das tun, hängt von Ihrem Betriebssystem ab.

Auf Debian oder Ubuntu zum Beispiel so etwas wie

sudo apt-get install python-dev 

sollte es tun.

auf Fedora/CentOS/Red Hat, versuchen

sudo yum install python-devel 
+0

Danke für die Antwort Chris. Ich habe bereits die Header-Dateien installiert. Es gibt mir immer noch den Fehler. Ich verwende AWS AMI. – upagna

+0

@upagna, wie haben Sie die Header installiert? – Chris

+0

Ich habe sudo yum python-devel installieren. Aktualisiere die Frage, was ich bis jetzt getan habe – upagna