Pyglet是使用纯Python写成的,您不需要在安装前做什么。当然,您也可以有很多种方式来安装它。最好的方法应该是通过pip:
pip install --user pyglet
您也可以选择使用Git克隆Pyglet的存储库再自行安装:
git clone https://github.com/pyglet/pyglet.git cd pyglet python setup.py install --user