Home > Article > Backend Development > How to run python
How to run python?
Use cmd to run python program
Recommended: "Python Tutorial"
Steps: (1) Open cmd.
(2) Go to the disk where the file you want to run is located (for example: E disk). Input: e: Enter
(3) Open the folder where the file you want to run is located (for example: E:\ABC\123). Input: cd E:\ABC\123 and press Enter
(4) Run the program. Input: python ***.py (the name of the program file) and press Enter
Extended information
To run python under windows cmd, you need to configure the python environment Variables, now assuming that python is installed in the D:\Python directory, the method to set environment variables is as follows: Method 1. My Computer->Properties->Advanced->Environment Variables->System Variables, find it in the system variables PATH, click "Edit" and add ";D:\Python" (no quotes) at the end
The above is the detailed content of How to run python. For more information, please follow other related articles on the PHP Chinese website!