Python path (1) install Python and python path
The "Python path" describes how to install the Python development environment in windows.
(1) download the MSI Installation File
Go to www.python.org, click Downloads to enter the download page, select Windows, and select a releases to enter the download page. If windows is a 64-bit Windows x86-64 MSI installer download; if it is a 32-bit Windows x86 MSI installer. Double-click to install the SDK.
(2) Set System Variables
Environment variables are not automatically added by default. We need to manually configure them. Computer-properties-advanced system settings-environment variables, edit the Path in the system variables as Path = Path; C: \ Python34 (my Python installation directory is C: \ Python34 ), in this way, you can run Python through the command line.
(3) IDLE (Python GUI)
Start-all programs-Python 3.4-IDLE (Python GUI), run the Python integrated development environment
Now let's start with the path to Python, the path to Hacher.
Isn't it possible to run a Python program without installing python on a computer?
What is a required explanatory language?
Is it complicated?
Think of the php script.
How can a python program run on a PC without a python environment? Do I have to build a python environment?
Py2exe can convert a Python script to an exe program that can be independently executed on windows (that is, Python is not required to be installed) (plus other necessary runtime function libraries ).
-- From Baidu knowledge