这是一个初学者级别的问题。我在ubuntu上自学pygame 10.10。我下载了几个例子,pygame无法正常工作。一世 怀疑安装问题。但我不知道如何解决这个问题。
我还需要安装其他东西才能使其正常工作吗?
我的例子:http://cid-bb9549bdfdec74f4.skydrive.live.com/self.aspx/PyPlotter/pyplotter.py
我的错误:
prompt: python pyplotter.py
pyplotter.py:27: RuntimeWarning: use font: No module named font
(ImportError: No module named font)
font = pygame.font.SysFont("arial",12)
Traceback (most recent call last):
File "pyplotter.py", line 27, in <module>
font = pygame.font.SysFont("arial",12)
File "/usr/local/lib/python2.6/dist-packages/pygame-1.9.1release-py2.6-linux-i686.egg/pygame/__init__.py",
第70行,在 getattr
引发NotImplementedError(MissingPygameModule) NotImplementedError:字体模块不可用 (ImportError:没有名为font的模块)
3.
我安装了pygame:sudo easy_install pygame
This says I have the latest version of pygame. So, Do i need to install
something different for fonts?