2014-01-14 127 views
1

我是PyGame的新手,我希望使用它。 我有一個Win7 32位機器與Python3.3.0Pygame 1.9.2 ImportError:DLL加載失敗

我仔細選擇了正確的安裝程序,並用它來安裝PyGame。 安裝完成,沒有錯誤。我認爲一切都很好。重新啓動我的電腦幾次。然後,我開始輸入「進口pygame的」:

Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import pygame 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "C:\Python33\lib\site-packages\pygame\__init__.py", line 95, in <module> 
    from pygame.base import * 
ImportError: DLL load failed: The specified module could not be found. 

我試圖解決我的問題與that文章。但他/她正在使用python 2.6.4並選擇2.6的安裝程序。我拿起了that安裝程序。我用錯了嗎?如果我是對的,爲什麼我不能導入它?我嘗試了這篇文章的資源和建議。我知道PyGame現在擁有python3支持。爲什麼我不能使用它?

回答

相關問題