python3.4的pygame安装

时间:2022-12-12 18:02:45

确定你的python版本后,才能进行下面的步骤:

1.进入官网http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame  下载对应版本的pygame,注意区分32位与64位。

    这里wheel是一种便于python安装的压缩格式。

python3.4的pygame安装











2.进入cmd模式安装pip

 通过快捷键win+R (或者在开始菜单中输入cmd)进如cmd模式

python3.4的pygame安装

默认是C盘,但是安装时需要切换到具体目录

python3.4的pygame安装



















通过cd就切换过去了,再进行pip install whell,会提示pip 版本过低,需要upgrade,那就更新

python3.4的pygame安装



更新输入pip install --upgrade pip,如图更新完毕。

python3.4的pygame安装









3.在cmd安装wheel

还是在Script目录下,输入pip install wheel

python3.4的pygame安装 







4.确认下是否安装到位

输入pip list 

显示 pip(9.0.1)

setuptools(12.0.5)

wheel (0.29.0)

说明全部安装好了

5.安装pygame

将下载好的pygame文件放置在Script的文件夹里

在cmd窗口中输入pip pygame-1.9.3-cp34m-win32.whl(版本不同,只需要变化文件的名字而已)

python3.4的pygame安装




6.检验是否安装到位

在Python IDLE中输入import pygamepygame.ver两条语句,即可知道结果


以上就是这些,谢谢~