web-dev-qa-db-ja.com

UbuntuにPyCryptoをインストールする-ビルド時の致命的なエラー

他の同様のスレッドを見ても、pycryptoを実行できません。

Ubuntuラップトップで動作させようとしていますが、Windows PCでも管理できませんでした。

Pycrypto-2.6をダウンロードして抽出し、実行しました

    python setup.py build

しかし、その後、これが起こりました

warning: GMP or MPIR 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.7 -c src/MD2.c -o build/temp.linux-i686-?2.7/src/MD2.o
src/MD2.c:31:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

助けていただければ幸いです。

60
OJFord

Python開発ファイルをインストールする必要があります。これでうまくいくと思います。

Sudo apt-get install python-dev
143
Ned Batchelder

Ubuntuでは、成功するために他のパッケージが必要でした。

apt-get install autoconf g++ python2.7-dev
pip install pycrypto
20
Homer6

UbuntuでPython 3.xを使用する場合、以下が必要です。

Sudo apt-get install gcc python3-dev

おそらく既にgccを持っていますが、ベースイメージpython:3.6.4-slim-jessieを使用してDockerfileからこのコマンドを試行する場合に備えて、gccも必要になります。

5
Luka Lopusina