How to download the python interpreter?
A language like python requires an interpreter. Moreover, the interpreter is also implemented in multiple languages. What we introduce is the implementation of the most commonly used C language, called Cpython. Python has its own interpreters on various operating systems. Through the interpreters on each operating system, Python is cross-platform.
We can download the python interpreter from the official website: https://www.python.org/downloads/windows/.
Web-based, executable, embeddable zipfile difference
● web-based: installed through the network, that is, after executing the installation, download python through the network
● executable : For executable files, download all the python to be installed and install it on your local machine (we download all executable files)
● embeddable zipfile: zip compressed file, which is python packaged into zip compression Package
Another download address: https://mirrors.sohu.com/python/3.6.5
Related recommendations: "Python Tutorial"
The above is the detailed content of How to download the python interpreter. For more information, please follow other related articles on the PHP Chinese website!