我已經安裝了python 3.3.2和pygame 1.9.2a0。每當我試圖通過鍵入導入pygame的:ImportError:沒有名爲'pygame'的模塊
進口pygame的
我獲得以下錯誤信息:
Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import pygame
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
ImportError: No module named 'pygame'
>>>
我通過一些有關這個錯誤的問題去,但沒有解決方案的幫助。 我有Win7操作系統的64位機器
你是如何安裝pygame的? easy_install的?從源代碼構建? – wflynny
easy_install。我沒有從源代碼構建。 – user2398618
打開一個python shell並鍵入'import sys;打印sys.path'。如果pygame不在你的PYTHONPATH上,那麼你需要添加它。這很奇怪easy_install沒有把它放在那裏。 python3.3.2是唯一的python安裝嗎?或者你也有python2.7.4或類似的東西? – wflynny