Pygame的安装的Python 3.3(Pygame installation for Pytho

2019-07-17 17:43发布

我试图导入Pygame的使用我的版本的Python 3.3。 Pygame的网站上下载只有Python的3.1和3.2。 我似乎无法能够导入Pygame的,虽然我认为我有它安装在正确的路径。 我曾经尝试都在3.1和3.2 pygame的下载。

是pygame的只是没有安装在正确的文件路径或者是Pygame的不符合我的Python版本(3.3)的兼容?

我运行Windows 7和这里的错误:

Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
import pygame
File ".\pygame\__init__.py", line 95, in <module>
from pygame.base import *
ImportError: DLL load failed: The specified module could not be found.

Answer 1:

主要Pygame的页面似乎很少更新。 您可以下载Pygame的释放直接到位桶在https://bitbucket.org/pygame/pygame/downloads 。



Answer 2:

“Python版本3.3要求,这是不是在注册表中找到”如果从保罗文森特·克雷文的回答的解决方案使你,你必须下载并安装从这个版本的官方下载网站 :

Python 3.3.0 Windows X86-64 MSI Installer


Answer 3:

如果您使用的是Windows和了Python 3.3,打开上到位桶的下载页面 。 下载:pygame的-1.9.2a0.win32-py3.3.msi

然后,如果你有Pygame的导入可以测试pygame



Answer 4:

每次更新我的蟒蛇优化版本(目前我使用Python 3.3的工作),我下载一个特殊的构建pygame的,从这个ADRESS 。 它建立了很多其他的包,所以我认为这是值得一探究竟。



Answer 5:

我也有这个问题。 Pygame的必须是与Python的版本,你有电脑的类型兼容。 举例来说,如果你有Python版本3.3.2,但是下载Pygame的版本2.7.1中,“进口pygame的”功能将无法使用。



Answer 6:

您需要下载Pygame的版本,它等效的Python 3.3从到位桶和pygame的仅在32位,所以你需要确保Python是3.3的32位。 :从下载https://bitbucket.org/pygame/pygame/downloads



Answer 7:

sudo apt-get install python-pygame
提高像404的一些错误对一些软件包,所以
https://community.webfaction.com/questions/315/how-do-i-install-pygame
此链接的帮助充满了对我



文章来源: Pygame installation for Python 3.3
标签: python pygame