How to build a python development environment on windows.

Python language usage scenarios now more and more people came into contact with a lot to learn Python, before you start to learn Python, setup the development environment is the primary foundation, windows operating system is currently used in most ordinary operating system, so learn how to setup the development environment is essential on windows, built following details about the steps.

(1) First check the system type windows on their computer, return to the desktop, right-click My Computer / Computer] - "[Property], opens a window to view the system type is 64 or 32, I It is a 64-bit computer, the subsequent steps to Example 64.

 (2) into the Python official website, downloading the installation package python interpreter

https://www.python.org/ , you can install the previous version of the latest stable version, you can install, choose according to the actual needs of the individual, in this case study to 3.8.2, download the 64-bit installation package.

 

(3) is mounted.

    Double-click the installation package

Select the box in the red ellipse must be selected.

By pressing [Install Now] directly installed using the default installation.

(4) verify the installation.

Press the key combination [windows + R], type cmd, and into the dos window, enter the python command, i.e., a screen appears content installation was successful.

This, Python interpreter has been installed successfully.

(5) to start programming journey.

Can be interactive programming, try to print a hello world, considered a 2 + 1 try.

It can also make use of idle programming.

[Start] - find python38, click IDLE, enter idle programming environment. [File] - "[New File] in the input window, enter print (" hello world "), [run] -" [Run Module], when prompted to save, click OK to save, enter the file name test, appear the results, print out hello world.

Enter the print ( "hello world")

In this way, the windows python development environment to build a complete and can now happily programmed it, I wish you all the programming on the road, getting happy, getting happy!

 

发布了4 篇原创文章 · 获赞 2 · 访问量 388

Guess you like

Origin blog.csdn.net/xuxin555/article/details/104589821