Rumah > Artikel > pembangunan bahagian belakang > python怎么安装pygame
python怎么安装pygame?具体步骤如下:
1.去官网下载PyGame
注意:要下载对应版本的包
官网地址:http://www.pygame.org/download.shtml
其中,如果python为以下版本:
python 3.4: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame
python 3.5,3.6 :https://pypi.python.org/pypi/Pygame
(cp36就是python3.6的意思)
2. .exe文件直接安装
.whl文件启动doc命令安装:
在文件所在位置打开doc界面:(win10直接在当前文件夹空白处按住shift,右键打开powershell窗口)
相关推荐:《Python视频教程》
输入以下指令安装:
pip install pygame-1.9.3-cp36-cp36m-win32.whl
3.测试安装结果
4.问题
安装过程中出现了两个问题:
1)You are using pip version 9.0.1, however version 10.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
原因:这个问题主要是版本没有更新的意思,更新一下就好了
解决方法:输入python -m pip install --upgrade pip命令更新一下就好了
2)pygame-1.9.3-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
原因:版本不对应
解决方案:
检查是否下载了正确的对应:python版本,32还是64位
Atas ialah kandungan terperinci python怎么安装pygame. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!