Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 pygame 游戏,我想使用 pygame.gfxdraw.aacricle(),但每当我这样做时,都会出现错误:
AttributeError:“模块”对象没有属性“gfxdraw”
如何为 python 2.7 安装 gfx?
我在 pygame 中使用 gfxdraw 也遇到了同样的问题。一旦我明确地导入了模块,就没有问题了。在导入 pygame 后添加这一行解决了这个问题:
import pygame.gfxdraw
奇怪的是,我不需要显式地导入 pygame.draw 来使用它。
这是gfx的编译和安装指南。
对于基本安装,这是标准:
python setup.py build python setup.py install
或者您是否已经尝试过这个并遇到了一些问题?