马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
Microsoft Windows [版本 10.0.19045.2364]
(c) Microsoft Corporation。保留所有权利。
C:\Users\Administrator>pip install pygame
Collecting pygame
Downloading pygame-2.5.1-cp311-cp311-win_amd64.whl (10.6 MB)
---------------------------------------- 10.6/10.6 MB 107.9 kB/s eta 0:00:00
Installing collected packages: pygame
Successfully installed pygame-2.5.1
[notice] A new release of pip is available: 23.1.2 -> 23.2.1
[notice] To update, run: python.exe -m pip install --upgrade pip
C:\Users\Administrator>python
Python 3.11.4 (tags/v3.11.4:d2340ef, Jun 7 2023, 05:45:37) [MSC v.1934 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
pygame 2.5.1 (SDL 2.28.2, Python 3.11.4)
Hello from the pygame community. https://www.pygame.org/contribute.html
>>>
帮忙看看原因,是哪里有问题吗
根据您提供的信息,您成功安装了pygame-2.5.1。从输出中可以看出,pygame成功被收集并安装。不过,您可能会注意到在安装过程中有一个提示,建议您升级pip到最新版本。这是一个建议,但不会影响pygame的安装。
如果您想要升级pip,可以运行以下命令:
python.exe -m pip install --upgrade pip
这将会升级pip到最新版本。然而,如果您不打算升级pip,您仍然可以正常使用已安装的pygame库。
|