First, download
: https://www.python.org/downloads/windows/
Python 3.6.1-2017-03-21
Download Windows x86 web-based Installer
Download Windows x86 Executable Installer
Download Windows x86 embeddable zip file
Download Windows x86-64 web-based Installer
Download Windows x86-64 Executable Installer
Download Windows x86-64 embeddable zip file
Download Windows Help file
The differences between the previous versions:
x86 suitable for 32-bit operating system, x86-64 suitable for 64-bit operating system;
Web-based Installer is required to complete the installation through the network;
Executable installer is an executable file (*.exe) mode installation;
embeddable zip file embedded version, can be integrated into other applications.
Second, installation
Choose Install Download package, select the next.
Third, set environment variables
Right click on "My Computer" select "Properties", select "Advanced System Configuration", click "Advanced", click "Environment variable", select "Path", add the Python installation directory to the path system variable.
My directory is: E:\Program Files (x86) \appdata\local\programs\python\python36-32
Iv. test whether the Python installation was successful, cmd open command line Input python command
D:\users\mycomp>python
Python 3.6.1 (V3.6.1:69C0DB5, Mar, 17:54:52) [MSC v.1900 (Intel)]
On Win32
Type "Help", "copyright", "credits" or "license" for more information.
>>>
V. Hello world! According to a lot of data, enter print (' Hello world! ')
>>> print (' Hello world! ')
Hello world!
>>>
This article is from the "Wheat Dock" blog, please make sure to keep this source http://yunlongzheng.blog.51cto.com/788996/1917002
NOTES: Python Environment Build-1