1

こんにちは私はPythonを初めて使用します...これがばかげた質問である場合はご容赦ください...

python 2.7.3をインストールしたStarCluster後、次のコマンドを使用して実行しようとしたパッケージをインストールしたいと思いました。

$ sudo easy_install StarCluster

ただし、これにより依存パッケージのインストール時にエラーが発生した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.6
Downloading http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.tar.gz
Processing pycrypto-2.6.tar.gz
Running pycrypto-2.6/setup.py -q bdist_egg --dist-dir /var/folders/N3/N3c0k2wGFciTmmsVNCCRE++++TI/-Tmp-/easy_install-udIVh6/pycrypto-2.6/egg-dist-tmp-K6hQbK
warning: GMP or MPIR 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:147: fatal error: error writing to -: Broken pipe
compilation terminated.
lipo: can't open input file: /var/folders/N3/N3c0k2wGFciTmmsVNCCRE++++TI/-Tmp-//ccyyE9rh.out (No such file or directory)
error: Setup script exited with error: command 'gcc-4.2' failed with exit status 1

ありがとう

HLM

4

1 に答える 1

0

編集: gcc のバージョンとして 4.1 ではなく 4.2 を使用するには、こちらの手順に従ってください。


彼を試してみてください:

sudo apt-get install python-pip

pippython パッケージ マネージャーです: pip=pip はパッケージをインストールします。それで、

sudo pip install StarCluster

次に、python を起動して starcluster をインポートします。

python
import starcluster

で同じことができますpycrypto

sudo pip install pycrypto
于 2012-11-28T22:45:03.970 に答える