7

easy_installを使用してosxにpycryptoをインストールしようとしていますが、次のエラーが発生します。

easy_install pycrypto
Searching for pycrypto
Reading http://pypi.python.org/simple/pycrypto/
Reading http://pycrypto.sourceforge.net
Reading http://www.pycrypto.org/
Reading http://www.amk.ca/python/code/crypto
Best match: pycrypto 2.3
Downloading http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.3.tar.gz
Processing pycrypto-2.3.tar.gz
Running pycrypto-2.3/setup.py -q bdist_egg --dist-dir /var/folders/3D/3D07iptvHZuzuYaeQDMFIU+++TI/-Tmp-/easy_install-00HgRU/pycrypto-2.3/egg-dist-tmp-BWGYsg
warning: GMP library not found; Not building Crypto.PublicKey._fastmath.
/usr/libexec/gcc/powerpc-apple-darwin10/4.2.1/as: assembler (/usr/bin/../libexec/gcc/darwin/ppc/as or /usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc not installed
Installed assemblers are:
/usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64
/usr/bin/../libexec/gcc/darwin/i386/as for architecture i386
src/MD2.c:134: fatal error: error writing to -: Broken pipe
compilation terminated.
lipo: can't open input file: /var/folders/3D/3D07iptvHZuzuYaeQDMFIU+++TI/-Tmp-//ccoXuPRo.out (No such file or directory)
error: Setup script exited with error: command 'gcc-4.2' failed with exit status 1
4

4 に答える 4

10

私はこの~/.bash_profile問題に対処するためにこれを持っています:

# Set compile flags to not try to compile for PPC (no longer supported by xcode 4)
# (this is required for eg building pycrypto)
export ARCHFLAGS="-arch i386 -arch x86_64"
于 2011-05-19T17:59:47.330 に答える
2

はい、それはXcode 4をインストールした結果です。Xcode4には関連するビットがありませんが、ppc用にビルドしようとします。それを回避する方法については、この質問を参照してください:https ://superuser.com/questions/259278/python-2-6-1-pycrypto-2-3-pypi-package-broken-pipe-during-build

于 2011-05-19T17:18:17.983 に答える
1

xCode 5.1

ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install pycrypto
于 2014-03-13T08:17:21.100 に答える
0

これはOSX10.9では少し難しくなったようです。これが私がした追加のことです:

brew install libffi

「樽のみ」のインストール方法に関する警告が表示された場合は、homebrewがリンクしていなかったことを意味するため、でさらに情報を提供する必要がありますexport PKG_CONFIG_PATH=/usr/local/opt/libffi/lib/pkgconfig。その時点で、デフォルトでOSXが警告フラグで停止するため、インストールが失敗します。そのため、その動作も抑制してください。

export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments

次に、でインストールできるはずですpip

于 2014-05-05T19:40:27.997 に答える