"Go" original address: http://jingyan.baidu.com/article/25648fc19f61829191fd00d4.html
1.
Download the Python version on the Python website, download the corresponding version (see whether you are a 32-bit or 64-bit operating system in the computer-properties), and I am 64-bit, and download the corresponding 64-bit installation package (for example: Windows x86-64 executable Installer).
The official website is as follows:
https://www.python.org/downloads/release/python-360/
2.
Python download can also download the zip version (Windows x86-64 embeddable zip file), but after downloading sometimes found that there will be a lot of DLL file loss situation, but also need to fix these problems, it will be more troublesome, So it's still recommended to download the Windows x86-64 executable installer version
3.
After the download is complete, double-click the EXE program to download the installation interface.
Installation interface can choose the default installation, you can also customize the installation, I prefer to customize the installation, the default installation path is relatively deep, custom installation of their own definition of a lighter directory, follow-up easy to find.
4.
Select the path to install, you can put the bottom of the "Add Python 3.6 to PATH" tick, this will directly default to add the user variable, the subsequent no need to add
5.
Select OK, continue to the next step, all the default selection, if necessary to change, and then the next step directly update the path of the installation store (D:\program\python3.6.0).
6.
Continue to the next step and you are prompted to install successfully. Information such as 2 can also be seen in the installation directory. You can see the version that was successfully installed by executing python-v (capital V OH) in cmd at the same time.
Python has been successfully installed and can be used.
7.
If CMD executes without the corresponding version information, it is possible that the environment variable is not configured well, right-click Computer-Properties-Advanced system Settings-advanced-environment variable-system variable path to add Python paths (D:\program\python3.6.0, remember to use the English semicolon separated OH). System variables are available to all users, so add them, but if only the current user is available, add only the user variables.
"Go" How to download Install Python