Search This Blog

Install Python 3 on Windows 10

Option 1: install Python 3 from Microsoft Store




Option 2: install the latest Python 3

  • Download the latest state Python installer for Windows: https://www.python.org/downloads/windows/
  • Execute the installer to install it
  • Update the symbolic links in %USERPROFILE%\AppData\Local\Microsoft\WindowsApps
    • Run Command Prompt as Administrator
    • Run the following commands in Command Prompt
      cd %USERPROFILE%\AppData\Local\Microsoft\WindowsApps
      del python.exe
      mklink .\python.exe "C:\Program Files\Python310\python.exe"
      del python3.exe
      mklink .\python3.exe "C:\Program Files\Python310\python.exe"

No comments:

Post a Comment