美文网首页
pygame最方便的安装方式

pygame最方便的安装方式

作者: 唐小明_d419 | 来源:发表于2019-05-23 22:04 被阅读0次

搜索python pygame会有很多方法,因为python的版本的原因以及英文的原因

到了pygame.org/download.shtml   进入pygame.org要看到这个页面都很难,太奇怪

进入python官网点击PyPI

搜pygame 下载对应的版本,你会发现好多版本

pygame-1.9.3-cp36-cp36m-win_amd64.whl

cp36的意思就是python 3.7 的意思 amd64表示是64位的意思

反正就是乱,虽然csdn上有很多的方法:

不过我在官网上看到

GettingStarted — wiki

Pygame Installation

Pygame requires Python; if you don't already have it, you can download it from python.orgUse python 3.6.1 or greater, because it is much friendlier to newbies, and additionally runs faster.

The best way to install pygame is with the pip tool (which is what python uses to install packages). Note, this comes with python in recent versions. We use the --user flag to tell it to install into the home directory, rather than globally.

python3-m pip install-U pygame--user

To see if it works, run one of the included examples:

python3-m pygame.examples.aliens

If it works, you are ready to go! Continue on to the tutorials.

大约的意思就是 开始运行cmd 

进入python的目录 

python -m pip install-U pygame--user

输入这个命令,就会自动下载安装

下面这一条

python -m pygame.examples.aliens

是测试看安装成功了没

这样子好像就不用管版本的问题

相关文章

  • pygame最方便的安装方式

    搜索python pygame会有很多方法,因为python的版本的原因以及英文的原因 到了pygame.org/...

  • 飞机大战

    安装pygame 1,首先安装pygame 2,验证是否安装pygame 如果安装上那就完成下列步骤,完成飞机大战...

  • 72. anaconda安装pygame与在jupyter中使用

    两种pygame的暗转该方法: 新环境下安装pygame 安装jupyter下运行的pygame anaconda...

  • Python3.5.1下安装pygame

    可以通过pip包管理器来安装Python包,但是pygame包包含C语言代码,需要进行编译。最简单的方式是,在网上...

  • pygame 学习之路1

    安装Pygame 你可以从www.pygame.org下载Pygame,选择合适你的操作系统和合适的版本,然后安装...

  • 飞机大战

    一: 安装pygame $sudo pip3 install pygame ...

  • CentOS7安装8.0版本mysql

    安装思路记录自己安装mysql的一次历程。mysql的安装有很多中方式,yum安装是最方便快捷的方式了,解决了各种...

  • 计算机编程入门之二

    上一篇文章介绍了安装python,这一篇介绍安装pygame。 pygame是什么呢?pygame是python编...

  • pygame安装

    对于pygame的安装 最简单的方法就是在安装python的机器上 运行如下命令 pip install pyga...

  • 学习 知识

    pygame 官方网站:https://www.pygame.org/安装 pygame python3 -m p...

网友评论

      本文标题:pygame最方便的安装方式

      本文链接:https://www.haomeiwen.com/subject/ayyizqtx.html