ImportError:没有名为 'pygame' 的模块
当尝试导入 Pygame 模块时,您可能会遇到“ImportError:没有名为 'pygame' 的模块” ‘pygame’”错误。本文将提供解决此问题的解决方案。
解决方案:
要正确安装 Pygame,请导航到 Python/scripts 文件夹并打开命令窗口。键入以下命令:
C:\python34\scripts> python -m pip install pygame
安装后,打开 Python IDE 并通过键入以下命令测试安装:
import pygame print (pygame.ver)
如果安装成功,您应该看到打印的 Pygame 版本在控制台中。
以上是如何修复'ImportError:没有名为'pygame”的模块”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!