安装 pygame

在窗户上

  1. 导航到 http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame - 一个非官方站点,为 Christoph Gohlke 官方 CPython 发行版提供开源 python 包的 windows 二进制文件。 **

  2. 根据你安装的 python 版本下载相应的 pygame .whl 文件。 (该文件的名称类似于 pygame - <pygame version> - <python version> - win32.whl

  3.  pip install your-pygame-package.whl
    

    在你的终端,bash 或 consol 里面。
    注意: 如果在 PATH 中找不到 pip,请尝试运行 python -m pip install your-pygame-package.whl

  4. 检查是否可以将 pygame 导入为 python 模块

    import pygame
    

    如果你没有收到错误,你已经在你的计算机上正确安装了 pygame :)

在 linux 上

  1. 打开终端并运行

    sudo apt-get install python-pygame
    

    注意: 这将为 python2 安装 pygame

  2. 尝试在里面导入 pygame

    import pygame
    

    如果你没有收到错误,你已经在 linux 系统上正确安装了 pygame :)

在 macOS 上

有两种方法可以在 mac 上安装它:

方法 1

转到 Pygame 下载页面并下载 mac 安装程序。运行它,它应该在你的 Mac 上安装 Pygame。

方法 2

安装 Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

然后使用 Homebrew 安装 Python 2.7.12 和 Pygame:

brew install python; brew install homebrew/python/pygame

现在在终端中运行 Python 并尝试 import pygame。如果它没有说什么,它已成功安装。