如何安装pygame字体

发布于 2024-10-21 11:13:53 字数 1275 浏览 2 评论 0原文

这是一个初学者级别的问题。我正在 ubuntu 上自学 pygame 10.10。我下载了几个示例,但 pygame 无法正常工作。我 怀疑安装有问题。但我不确定如何弄清楚。

我还需要安装其他东西才能使其正常工作吗?

  1. 我的示例:http://cid-bb9549bdfdec74f4.skydrive .live.com/self.aspx/PyPlotter/pyplotter.py

  2. 我的错误:

    提示: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?

  1. My example: http://cid-bb9549bdfdec74f4.skydrive.live.com/self.aspx/PyPlotter/pyplotter.py

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半步萧音过轻尘 2024-10-28 11:13:53

不要通过 easy_install 安装,而是安装 pygame 的 Ubuntu 软件包: python-pygame (它在宇宙中)。

Instead of installing through easy_install, install the Ubuntu package for pygame: python-pygame (it's in universe).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文