在Python Programming for the Absolute Beginner中,它要求您下载pygame和livewires。该书将您链接到一个页面,您可以在该页面下载为该书制作的文件夹包。在这些文件夹中是pygame的设置向导和livewires.bat
的文件。
但是,我运行了pygame
向导,当我import pygame
在 Python 脚本的开头使用时,我得到了这个讨厌的错误:
Traceback (most recent call last):
File "C:\Python34\pygam test.py", line 1, in <module>
import pygame
File "C:\Python34\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.
当启动器询问何时放置“pygame”或其他内容时,我输入了以下内容:
C:\Python34
这对我来说似乎是正确的。'livewires'的.bat
文件目前也不起作用,但我想那是因为 'pygame' 不起作用。
旁注:我的PATH
链接C:\Python34
也是如此。
问题是什么?