Python3.6的下载+安装+配置
8:07 2020/1/31 星期五
百度搜索:Python3.6
第一项是广告:
第二项:
https://www.python.org/downloads/release/python-368/
Get the latest releases of 3.6.x and 3.8.x here
第三项:
https://www.python.org/downloads/release/python-366/
Get the latest releases of 3.6.x and 3.8.x here
往下拉:
找到:pytthon 3.6.0
Python 3.5.3 Jan. 17, 2017 Download Release Notes
Python 3.6.0 Dec. 23, 2016 Download Release Notes
Python 2.7.13 Dec. 17, 2016 Download Release Notes
https://www.python.org/downloads/release/python-360/
Python 3.6.0
Release Date: Dec. 23, 2016
Python 3.6.0 was the initial feature release of Python 3.6.
拉到最下面:
Windows help file Windows 6a842a15ab3b4aa316c91a9779db82ec 7940890 SIG
Windows x86-64 embeddable zip file Windows for AMD64/EM64T/x64 0ec0caeea75bae5d2771cf619917c71f 6925798 SIG
Windows x86-64 executable installer Windows for AMD64/EM64T/x64 71c9d30c1110abf7f80a428970ab8ec2 31505640 SIG
Windows x86-64 web-based installer Windows for AMD64/EM64T/x64 25b8b6c93a098dfade3b014630f9508e 1312376 SIG
Windows x86 embeddable zip file Windows 1adf2fb735c5000af32d42c39136727c 6315855 SIG
Windows x86 executable installer Windows 38d9b036b25725f6acb553d4aece4db4 30566536 SIG
Windows x86 web-based installer Windows f71f4590be2cc5cdc43069594d4ea98d 1286984 SIG
下载之后开始安装:
选中最下面一行的:
Add Python 3.6 to PATH
安装完成:
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>
C:\Users\Administrator>python
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AM
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>>
>>> exit
Use exit() or Ctrl-Z plus Return to exit
>>>
>>> exit()
C:\Users\Administrator>
验证:
C:\Users\Administrator>
C:\Users\Administrator>
C:\Users\Administrator>python
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AM
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print('Hello World!')
Hello World!
>>>