Pygame error in Python 3.4
报错就行 import pygame:
1
|
ImportError: DLL load failed: The specified module could not be found.
|
从 pygame _ init_ 中的这一行开始:
1
|
from pygame.base import *
|
我正在使用 Python 3.4 和 Pygame-1.9.2a0.win32-py3.2.msi
目前似乎没有官方的 Pygame 版本与 Python 3.4 兼容。您可以将您的 Python 降级(到 3.2 或 2.7)或使用非官方 Pygame 版本,例如此处托管的版本。
不管怎样,这个问题与 Pycharm 无关。
更新:最近(2016 年 12 月),PyGame 重新焕发生机。现在,Pypi 上有所有当前 Python 版本的官方 PyGame 下载。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267921.html