Python pygame如何安装?详解Python pygame安装的教程实例


本文摘自php中文网,作者零下一度,侵删。

本篇文章主要介绍了详解Python pygame安装过程笔记。小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

今天看到一个教程,是关于Python安装pygame模块的。觉得很好,拿来分享一下。

安装Python

额,这个小题貌似在这里很是多余啊。但是为了照顾到刚刚学习Python的童鞋,我还是多啰嗦两句吧。

具体如下:

我们要到Python官网。去下载我们需要的版本。我这里下载的是windows64位 的Python2.7 msi。安装的过程如果不懂,选择为默认即可。

安装easy_install

至于这是个什么东东?我们大可不必劳心,现在只需要知道它能帮助我们安装一些库就可以了。具体的安装过程也很简单,只需要下载这个库,使用python的命令进行安装即可。

安装pip

好了,经过了前面的两步,想必大家(尤其是刚入门的童鞋)肯定会很心烦了吧,怎么需要装这么多的东西。但是咧,千万不要灰心,因为好日子马上就要来了。pip就是这么一款能解放你安装库的复杂劳动的一款神器。下面就一起来看一看怎么安装pip吧。

在此之前,一定要确认你的windows系统中已经安装好了Python和easy_install。

安装成功的标志:


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

Microsoft Windows [版本 6.1.7600]

版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

 

C:\Users\Administrator>python

Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (

AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> exit()

 

C:\Users\Administrator>easy_install -version

usage: easy_install [options] requirement_or_url ...

  or: easy_install --help

 

error: option -r not recognized

 

C:\Users\Administrator>

接下来就是把目录切换到python的安装目录下的Script文件夹下,输入
easy_install pip。当然了如果要想方便一些的话,可以把这个路径配置到你的环境变量中(至于怎么配,网上的相关教程很多也很详细。我就不重复的造轮子了)。

验证一下:


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

C:\Users\Administrator>pip -v

 

Usage:

 pip <command> [options]

 

Commands:

 install           Install packages.

 download          Download packages.

 uninstall          Uninstall packages.

 freeze           Output installed packages in requirements format.

 list            List installed packages.

 show            Show information about installed packages.

 search           Search PyPI for packages.

 wheel            Build wheels from your requirements.

 hash            Compute hashes of package archives.

 completion         A helper command used for command completion

 help            Show help for commands.

 

General Options:

 -h, --help         Show help.

 --isolated         Run pip in an isolated mode, ignoring

               environment variables and user configuration.

 -v, --verbose        Give more output. Option is additive, and can be

               used up to 3 times.

 -V, --version        Show version and exit.

 -q, --quiet         Give less output.

 --log <path>        Path to a verbose appending log.

 --proxy <proxy>       Specify a proxy in the form

               [user:passwd@]proxy.server:port.

 --retries <retries>     Maximum number of retries each connection should

               attempt (default 5 times).

 --timeout <sec>       Set the socket timeout (default 15 seconds).

 --exists-action <action>  Default action when a path already exists:

               (s)witch, (i)gnore, (w)ipe, (b)ackup.

 --trusted-host <hostname>  Mark this host as trusted, even though it does

               not have valid or any HTTPS.

 --cert <path>        Path to alternate CA bundle.

 --client-cert <path>    Path to SSL client certificate, a single file

               containing the private key and the certificate

               in PEM format.

 --cache-dir <dir>      Store the cache data in <dir>.

 --no-cache-dir       Disable the cache.

 --disable-pip-version-check

               Don't periodically check PyPI to determine

               whether a new version of pip is available for

               download. Implied with --no-index.

 

C:\Users\Administrator>

安装pygame

安装pygame的前提那肯定是先得下载这个文件啊。所以我们需要下载一下。pygame 文件下载。记得对应你的Python版本进行下载哦。

下载完之后我们会发现它是一个.whl后缀的文件。这就比较尴尬了。怎么打开呢?

答案就是使用另一款工具,wheel。wheel 本质上是一个 zip 包格式,它使用 .whl 扩展名,用于 python 模块的安装,它的出现是为了替代 Eggs。wheel 还提供了一个 bdist_wheel 作为 setuptools 的扩展命令,这个命令可以用来生成 wheel 包。wheel一下,检查是否安装成功。

安装wheel的方式这次就爽多了。因为我们已经有了pip。

pip install wheel。搞定了。

现在回过头来进到pygameXXXXX.whl的目录下,wheel 文件名 .好了,彻底搞定了。

验证一下


1

2

3

4

5

6

C:\Users\Administrator>python

Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (

AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> import pygame

>>>

木有报错,这就说明咱安装成功了。接下来就开始愉快的pygame之旅吧。

总结

整体的安装过程是很让人纠结的。尤其是对那些刚入门的童鞋。但是,这也是最有价值的经验了。因为这些库的安装会让你对Python的架构更加的熟悉。整体结构的把握也会更加的好。

以上就是Python pygame如何安装?详解Python pygame安装的教程实例的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

如何卸载Python

实用自动化运维Python脚本分享

Python中如何将列表中的字符串连接成一个长路径的实例

8年后Python重登2018年度编程语言王座

Python最长回文串算法

Python语言有哪两种编程方式

如何用Python画烟花

Python spyder界面无法打开的解决方法

Python基于递归算法实现的汉诺塔与fibonacci数列

Python能做嵌入式吗

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...