Ubuntu 10.04 LTS に最新の Python Crypto モジュールをインストールできません。で古い 2.0.1 Crypto バージョンを削除し、sudo apt-get remove python-crypto
バージョン 2.6 のインストールに進みました。
最新の Crypto zip をダウンロードし、インストーラーを実行しましたsudo python setup.py install
が、次のようになります。
running install
running build
running build_py
running build_ext
running build_configure
warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Cipher._AESNI' extension
gcc -std=gnu99 -fno-strict-aliasing -g -fwrapv -O2 -Wall -Wstrict-prototypes -g -O2 -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -DHAVE_CONFIG_H -fPIC -Isrc/ -I/usr/include/python2.6 -c src/AESNI.c -o build/temp.linux-i686-2.6/src/AESNI.o -maes
In file included from /usr/lib/gcc/i486-linux-gnu/4.4.3/include/wmmintrin.h:31,
from src/AESNI.c:26:
/usr/lib/gcc/i486-linux-gnu/4.4.3/include/emmintrin.h: In function \u2018aes128_keyexpand\u2019:
/usr/lib/gcc/i486-linux-gnu/4.4.3/include/emmintrin.h:1380: error: the last argument must be an 8-bit immediate
error: command 'gcc' failed with exit status 1
をインストールpython-dev
しましたが、効果がありませんでした。
apt-get install python-crypto
Crypto 2.0.1 をインストールするだけです。
私の Python バージョンは 2.6.5 です。