为 python 3.x 安装 pygame,遇到困难
Installing pygame for python 3.x, getting difficulties
我刚刚安装了最新版本的python,3.4.3 32位和对应的pygame。导入 pygame
时出现此错误
>>> import pygame
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
File "C:\Python34\lib\site-packages\pygame\__init__.py", line 127, in <module>
from pygame.base import *
ImportError: DLL load failed: The specified module could not be found.
请帮忙修正错误
尝试卸载 Python 3.4 并安装 Python 3.2,然后重新安装 pygame 的 3.2 版本。当我查看 pygame 网站时,我看不到 python 3.4 版本的 pygame,除非您特别需要 Python 3.2 的 3.4 pygame 的功能应该可以正常工作。
我刚刚安装了最新版本的python,3.4.3 32位和对应的pygame。导入 pygame
时出现此错误>>> import pygame
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
File "C:\Python34\lib\site-packages\pygame\__init__.py", line 127, in <module>
from pygame.base import *
ImportError: DLL load failed: The specified module could not be found.
请帮忙修正错误
尝试卸载 Python 3.4 并安装 Python 3.2,然后重新安装 pygame 的 3.2 版本。当我查看 pygame 网站时,我看不到 python 3.4 版本的 pygame,除非您特别需要 Python 3.2 的 3.4 pygame 的功能应该可以正常工作。