Learning Python (a) ---- Python3.6 installation

Python3.6 whole installation process

Reference Baidu experience: https://jingyan.baidu.com/article/e9fb46e1502c5a7520f76640.html

1. Open the official website to download the browser (may be slow)

https://www.python.org/downloads/release/python-362/

 

 

Note: If the official website to download or slow down, can be downloaded (pro-test available) in CSDN

http://download.csdn.net/download/qq_25560423/9737208

2, select the Downloads option, depending on the operating system, select the appropriate version. (I'm here to Windows32 bit system version, for example), Note: The above version 3.5 and earlier are not supported WindowXP windows system.

 

3, the download is complete, open python-3.6.0.exe installation package installed.

Check the Install launcher for all users all users can boot the system user

Check Add Python 3.6 to PATH is the installation path to the PATH environment variable, easy to run directly on a variety of system environments.

 

4, choose a custom installation, and select all mounted, wherein the mounting PIP, using "Tornado" web frame modules.

Click Next.

Select Local install path C: \ Python36-32, installation options directly using the default.

Click Install

 

6, the installation is complete, open the Python tour

Double-click the shortcut Python.

 

We try to print a hello world!

>>> print("hello world")
hello world
>>>

发布了9 篇原创文章 · 获赞 459 · 访问量 16万+

Guess you like

Origin blog.csdn.net/songhait/article/details/96283518