Home  >  Article  >  Backend Development  >  What is the Python development environment?

What is the Python development environment?

(*-*)浩
(*-*)浩Original
2019-05-05 17:52:3423875browse

The software development environment is also called Integrated Project Support Environment (IPSE) in Europe. The main components of a software development environment are software tools. The human-computer interface is a unified interactive dialogue system between the software development environment and the user. It is an important quality symbol of the software development environment. The software environment database that stores software products or semi-finished products (such as source code, test data, various documentation, etc.) produced by various software tool processing is the core of the software development environment. Connections and mutual understanding between tools are achieved through shared data stored in information repositories.

Recommended courses: Python tutorial

What is the Python development environment?

The same is true for the development environment of Python. Only when you download the development environment can you test the code functions and effects.

The Python development environment is very simple to install.

Go to the official website to download the python installation package. The official website address is: https://www.python.org/. The installation package is as shown in the figure:

What is the Python development environment?

Just double-click to install. Pay attention to adding python to the path (so you don't need to configure python environment variables).

Right-click "Computer",

Then click "Properties"

Then click "Advanced System Settings"

Select "System Variables" under the window "Path", double-click it!

Then in the "Path" line, just add the python installation path (the path where the Python folder is located), so later, just add the path. ps: Remember, the path is directly separated by a semicolon ";"! After the final setting is successful, enter the command "python" on the cmd command line to display the relevant information.

What is the Python development environment?

Check whether the installation is successful. Insert python in the cmd command line and the following picture will appear, indicating that the installation is successful.

What is the Python development environment?

The above is the detailed content of What is the Python development environment?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What work can python do?Next article:What work can python do?