Python3笔记002 - 1.2 搭建python开发环境

第1章 认识python

1.2 搭建python开发环境

1.2.1 python开发环境概述

python开发环境常见的操作系统:

  • Windows
  • Mac OS
  • Linux

1.2.2 安装python解释器

官方网站:https://www.python.org/

如何为windows系统选择安装文件?

官网某个具体版本可下载的安装包列表信息如下:

Version Operating System Description File Size
Gzipped source tarball Source release 23017663
XZ compressed source tarball Source release 17131432
macOS 64-bit/32-bit installer Mac OS X for Mac OS X 10.6 and later 34898416
macOS 64-bit installer Mac OS X for OS X 10.9 and later 28082845
Windows help file Windows 8131761
Windows x86-64 embeddable zip file Windows for AMD64/EM64T/x64 7504391
Windows x86-64 executable installer Windows for AMD64/EM64T/x64 26680368
Windows x86-64 web-based installer Windows for AMD64/EM64T/x64 1362904
Windows x86 embeddable zip file Windows 6741626
Windows x86 executable installer Windows 25663848
Windows x86 web-based installer Windows 1324608
x86 可以在Windows 32位系统上使用;
x86-64 可以在Windows 64位系统上使用;
web-based installer 要通过联网安装;
executable installer 可执行文件离线安装;
embeddable zip file 嵌入式版本,可集成到其他应用中; # windows10 64位 选择[Windows x86-64 executable installer],安装包文件是exe可执行文件。
比如安装文件:python-3.7.4-amd64.exe,则说明:
3.7.4-版本号
exe-可执行文件
amd64-适用于64位操作系统

python安装过程可称之为傻瓜式安装,按提示一步一步安装即可。

安装成功后设置环境变量,最终保证在任何位置输入python可以进入python解释器命令行模式。

上一篇:spring mvc 406 (Not Acceptable) json转换错误


下一篇:Problem J: 零起点学算法105——C语言合法标识符