Python Tutorial Part 1: Downloading and Installing Python

Python is a popular general-purpose programming language. It is easy to learn, easy to use, and has a broad "money" scene.

In web crawling, data mining analysis, artificial intelligence, operation and maintenance, and daily work efficiency improvement, there is a shadow of Python.

Therefore, today I will share with you the download and installation tutorial of Python.

Step 1: Download the latest version of Python

Python official website: http://www.python.org

After entering the official website, select the appropriate version to download and install according to the computer system. As of now, python-3.10.2 is the latest version of Python (this version cannot be used for Windows 7 systems and earlier systems, and friends of Windows 7 systems can choose to download python-3.8.10).

The second step: Python detailed installation tutorial

Install Python, just like we install other application software.

1) Double-click the downloaded installation package, and the following installation interface will appear.
Special attention: Be sure to check "Add Python 3.10 to PATH". The purpose of checking is to add the Python installation path to the system path. When executing the CMD command, python.exe will be called after entering Python. If it is not checked, an error will be reported when typing python under CMD.

2) Click "Install Now" to install.

3) The whole installation process will last for a few minutes, just wait quietly.

 4) When the following "Setup was successful" appears on the interface, click the "Close" button to complete the installation. 

Through the above steps, Python should be installed on our computer.

Next, press the Windows+R key, enter cmd to enter the DOS command interface, and then enter "python" to verify whether the installation is successful. If the interface shown in the figure below pops up, it means the installation is successful.

 At this point, the Python installation is done, very simple, right, just like we installed QQ and WeChat.

Here I still want to recommend the Python learning Q group I built myself: 831804576. Everyone in the group is learning Python. If you want to learn or are learning Python, you are welcome to join. Everyone is a software development party and shares dry goods from time to time ( Only related to Python software development),
including a 2022 latest Python advanced material and zero-based teaching compiled by myself, welcome advanced and interested friends to join in Python!

Guess you like

Origin blog.csdn.net/BYGFJ/article/details/124763813