Python之环境搭建

1、安装 python


安装Python的流程图,如下:
Python之环境搭建_第1张图片
Python之环境搭建_第2张图片
Python之环境搭建_第3张图片
点击install
Python之环境搭建_第4张图片
正在安装中…
Python之环境搭建_第5张图片
Python之环境搭建_第6张图片

2、手动将python配置到系统环境


Python之环境搭建_第7张图片
Python之环境搭建_第8张图片
Python之环境搭建_第9张图片
下面进行环境变量的配置:
Python之环境搭建_第10张图片
Python之环境搭建_第11张图片
测试python环境是否搭建成功?
1、WIN+R,打开cmd
2、输入python
3、显示如图则搭建成功
Python之环境搭建_第12张图片

3、使用 pip、wheel、临时换源 三种方式安装 pygame 库


此时想问什么是pip?
Python之环境搭建_第13张图片
我们都知道 python 有很多的第三方库或者说是模块。这些库针对不同的应用,发挥不同的作用。 我们在实际的项目中肯定会用到这些模块。那如何将这些模块导入到自己的项目中呢?
Python之环境搭建_第14张图片
Python 官方的 PyPi 仓库为我们提供了一个统一的代码托管仓库,所有的第三方库,甚至你自己 写的开源模块,都可以发布到这里,让全世界的人分享下载 。

3.1 使用 pip 安装 pygame 库

Python之环境搭建_第15张图片
如上图显示红框内容,则安装成功!
下面的警告是表示pip的版本需要更新
既然如此,那就更新吧
Python之环境搭建_第16张图片
Python之环境搭建_第17张图片
*注意:它会先卸载再安装新的版本哦!!!

3.2 使用 wheel 安装 pygame 库

卸载pygame的指令:pip uninstall pygame
Python之环境搭建_第18张图片
使用 wheel 安装 pygame 库,需要做以下操作:
1、安装 wheel 这个库:pip install wheel
2、打开网址 通过wheel安装
3、下载相应库的 .whl 文件
4、在 dos 命令行安装 pip install ***path.whl
Python之环境搭建_第19张图片
Python之环境搭建_第20张图片
我的python环境是3.9,然后电脑是64位
所以我下载的如图
Python之环境搭建_第21张图片
操作如下:
Python之环境搭建_第22张图片
Python之环境搭建_第23张图片
到此安装成功!!!

3.3 使用 临时换源 安装 pygame 库

为什么要换源呢?
Python之环境搭建_第24张图片
国外源下载慢,通过换源使用国内源,能让我们的下载速度更快!!!

推荐的五个国内源:
阿里云: http://mirrors.aliyun.com/pypi/simple/ 
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/ 
豆瓣(douban): https://pypi.douban.com/simple/ 
清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/ 
中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/

操作如下:
Python之环境搭建_第25张图片

4、分别使用python idle、ipython、pycharm 输出 hello world


4.1 使用python idle输出 hello world

Python之环境搭建_第26张图片
Python之环境搭建_第27张图片

4.2 使用ipython 输出 hello world

【1】首先安装ipython
Python之环境搭建_第28张图片
【2】输出hello world
Python之环境搭建_第29张图片

4.3 使用pycharm 输出 hello world

pycharm需要配置python环境
Python之环境搭建_第30张图片
Python之环境搭建_第31张图片
输出hello world
Python之环境搭建_第32张图片
Python之环境搭建_第33张图片

你可能感兴趣的:(python,python)