EN
Python - download and install (under Windows)
3 points
In this article, we would like to show you how to download and install Python under Windows.
There are available different implementations of Python. In this article we focus on two most popular that are Python and PyPy, where PyPy is recommended when you want to get better performance.
CPython is official Python VM implementation that can be downloaded for official web page.
Simple steps:
- go to the www.python.org and click Downloads choosing Download for Windows,
Download official Python VM. - then go to your Downloads folder, double-click the python installer and choose Install Now.
Note: do not forget to add Python folder path to the
PATH
environment variable after installation.
PyPy is unofficial Python VM implementation that provides faster VM. It is recommended to use it when we want to get better performance.
Simple steps:
- go to the www.pypy.org and select Download choosing Windows 64 bit.
- then go to your Downloads folder and extract PyPy zip file into desired folder, e.x.
C:\Program Files\PyPy
.Note: do not forget to add PyPy folder path to the
PATH
environment variable after installation.