The quickest and easiest way to install Python on Windows is by using WinGet.
Open PowerShell and run:
winget install -e --id Python.Python.3.11 --scope machine
If there are newer versions after the recording date of this video: https://winstall.app/apps?q=tags:%20python3
Close PowerShell, reopen it, and run the command:
python --version
If the version appears, everything is working correctly!
While you’re at it, also install PIP:
PIP is a package manager for Python—with it, we can install everything we need for Python:
winget install --id=LionelJouin.PiP-Tool -e
Close PowerShell, reopen it, and run the command:
pip --version
If the version appears, everything is working correctly!