1

MacにPygameをインストールする際に未回答の質問がいくつかありましたが、ここで具体的な質問をして、回答を期待します。

MacにPygameをインストールするのに非常に苦労しています。EnthoughtバージョンのEPD7.3-232ビットを使用しています。これがデフォルトのフレームワークであるためpython、ターミナルプロンプトで入力すると次のようになります。

$ python
Enthought Python Distribution (EPD) free version -- www.enthought.com
Version: 7.3-2 (32-bit)

Pip 1.2.1を使用して、このバージョンに追加のモジュールを問題なく正常にインストールしました。マシンにXcode4.5.2をインストールしていますが、gccエラーが発生します。

何か案は?

トレースは次のとおりです。

$ pip install Pygame

Downloading/unpacking Pygame

  Running setup.py egg_info for package Pygame

    warning: no files found matching 'readme.txt'
    no previously-included directories found matching '*/CVS'
    no previously-included directories found matching '*/*/CVS'
Installing collected packages: Pygame
  Running setup.py install for Pygame
    building 'pygame.font' extension
    gcc -fno-strict-aliasing -fno-common -dynamic -arch i386 -DNDEBUG -g -O3 -arch i386 -Ddarwin -I/Library/Frameworks/SDL.framework/Versions/Current/Headers -I/Library/Frameworks/SDL_ttf.framework/Versions/Current/Headers -I/Library/Frameworks/Python.framework/Versions/7.3/include/python2.7 -c src/font.c -o build/temp.macosx-10.5-i386-2.7/src/font.o
    unable to execute gcc: No such file or directory
    error: command 'gcc' failed with exit status 1
    Complete output from command /Library/Frameworks/Python.framework/Versions/7.3/Resources/Python.app/Contents/MacOS/Python -c "import setuptools;__file__='/var/folders/7p/wns1bszn1gq0zm3z2j_tdkdw0000gn/T/pip-build/Pygame/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/7p/wns1bszn1gq0zm3z2j_tdkdw0000gn/T/pip-478PM0-record/install-record.txt --single-version-externally-managed:
    running install

running build

running build_py

running build_ext

building 'pygame.font' extension

gcc -fno-strict-aliasing -fno-common -dynamic -arch i386 -DNDEBUG -g -O3 -arch i386 -Ddarwin -I/Library/Frameworks/SDL.framework/Versions/Current/Headers -I/Library/Frameworks/SDL_ttf.framework/Versions/Current/Headers -I/Library/Frameworks/Python.framework/Versions/7.3/include/python2.7 -c src/font.c -o build/temp.macosx-10.5-i386-2.7/src/font.o

    unable to execute gcc: No such file or directory

    error: command 'gcc' failed with exit status 1

----------------------------------------
Command /Library/Frameworks/Python.framework/Versions/7.3/Resources/Python.app/Contents/MacOS/Python -c "import setuptools;__file__='/var/folders/7p/wns1bszn1gq0zm3z2j_tdkdw0000gn/T/pip-build/Pygame/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/7p/wns1bszn1gq0zm3z2j_tdkdw0000gn/T/pip-478PM0-record/install-record.txt --single-version-externally-managed failed with error code 1 in /var/folders/7p/wns1bszn1gq0zm3z2j_tdkdw0000gn/T/pip-build/Pygame
Storing complete log in /Users/jchirico/.pip/pip.log
4

1 に答える 1

1

Command Line ToolsXcode 4.5のコンポーネントをインストールしましたか?起動してから-> ->をXcode.app選択し、またはをクリックします。これにより、ビルドツールとシステムヘッダーがのような従来の場所にインストールまたは更新されます。PreferencesDownloadsComponentsInstallUpdate/usr/bin

于 2012-12-17T01:32:38.777 に答える