Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python pycrypto installation error [duplicate]

Possible Duplicate:
PyCrypto and GMP library not found error [Mac OS 10.6.3]

I'm trying to install pycrypto on ubuntu, but it throws error

hom@PC71:~/Desktop/pycrypto-2.3$ sudo python setup.py build
running build
running build_py
running build_ext
warning: GMP library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Hash.MD2' extension
gcc -pthread -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.6 -c src/MD2.c -o build/temp.linux-i686-2.6/src/MD2.o
src/MD2.c:31: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

I have installed python-dev tools already.

like image 866
shivg Avatar asked Oct 21 '11 06:10

shivg


1 Answers

You are missing the Python development libraries. (Try apt-get install python-dev.)

However, unless you have a valid reason to compile pycrypto yourself, just install it via (I think) apt-get install python-crypto.

like image 54
AKX Avatar answered Sep 19 '22 18:09

AKX