如何安装pygame字体
这是一个初学者级别的问题。我正在 ubuntu 上自学 pygame 10.10。我下载了几个示例,但 pygame 无法正常工作。我 怀疑安装有问题。但我不确定如何弄清楚。
我还需要安装其他东西才能使其正常工作吗?
我的示例:http://cid-bb9549bdfdec74f4.skydrive .live.com/self.aspx/PyPlotter/pyplotter.py
我的错误:
提示:python pyplotter.py
pyplotter.py:27: RuntimeWarning: 使用字体:没有名为 font 的模块
(导入错误:没有名为字体的模块)
font = pygame.font.SysFont("arial",12)
回溯(最近一次调用):
文件“pyplotter.py”,第 27 行,位于<模块>
font = pygame.font.SysFont("arial",12)
文件“/usr/local/lib/python2.6/dist-packages/pygame -1.9.1release-py2.6-linux-i686.egg/pygame/__init__.py",
第 70 行,在 getattr
中
引发 NotImplementedError(MissingPygameModule)` NotImplementedError:字体模块不可用 (导入错误:没有名为字体的模块)
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?
This is a beginner level question. I am teaching myself pygame on ubuntu
10.10. I downloaded a couple of examples and pygame isn't working right. I
suspect an install problem. But I'm not sure how to figure it out.
Is there something else I have to install to make this work?
My example: http://cid-bb9549bdfdec74f4.skydrive.live.com/self.aspx/PyPlotter/pyplotter.py
My error:
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",
line 70, in getattr
raise NotImplementedError(MissingPygameModule)`
NotImplementedError: font module not available
(ImportError: No module named font)
3.
I installed pygame with: sudo easy_install pygame
This says I have the latest version of pygame. So, Do i need to install
something different for fonts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要通过 easy_install 安装,而是安装 pygame 的 Ubuntu 软件包: python-pygame (它在宇宙中)。
Instead of installing through easy_install, install the Ubuntu package for pygame: python-pygame (it's in universe).