Installation under Windows Python3.7

1, download Python3
official website address: www.python.org
current latest version is Python 3.7.3.

Windows下有个6个下载链接
Windows x86-64 embeddable zip file
Windows x86-64 executable installer
Windows x86-64 web-based installer
Windows x86 embeddable zip file    Windows
Windows x86 executable installer
Windows x86 web-based installer

Description:
(. 1) x86-64 for 64-bit operating system, the x86 for 32-bit operating system;
(2) the embeddable ZIP, Executable Installer, Web-based Installer difference
embeddable zip: a compressed file is downloaded, after decompression setup is complete.
executable installer: download a few MB of exe executable program, offline installation.
web-based installer: zip download is a few MB of exe executable program, you need to install networking.
3 ways are ultimately the same.
I chose Windows x86-64 executable installer.

2, mounting Python3
check Add Pythone 3.7 to Path installation, the installation path represents a path adding python in the environment variable.


3, see the Python commands in cmd command line displays the version number,

C:\Users\gdjlc>python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD6
4)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

4, Start Menu -> Programs -> Description Pyhone3.7 of four options


(. 1) the IDLE (Pythone 3.7 64-'bit)
   the Python integrated development environment
(2) the Python 3.7 (64-' bit)
   the Python command prompt, and type python at cmd command line to
(3) Python 3.7 Manuals (64 -bit )
   the Python all documents
(. 4) the Python Docs 3.7 Manuals ( 'bit-64)
   the Python system installed all documents available modules

Guess you like

Origin blog.csdn.net/gdjlc/article/details/91995193