When I started studying Python with engineers and non-engineers in-house, I stumbled upon the installation in the Windows 10 environment, so I will leave a note.
Windows x86-64 executable installer on the official download page (https://www.python.org/downloads/windows/)x86-64 and ʻexecutable`python-3.6.1-amd64.exe (3.6.1 part may change depending on the download date)
python -V and say Python 3.6.1, etc.C: \ Users \ (here is the user name) \ AppData \ Local \ Programs \ Python \ Python36 in the Windows environment variable PATH.setx / M PATH"% PATH%; C: \ Users \ (where this is your username) \ AppData \ Local \ Programs \ Python \ Python36 " from the command promptEven if I install only Python, an error occurs at startup, so install the VC ++ redistributable package of VS2015.
Check vc_redist.x64.exe and download with the blue "Next" button Install by running vc_redist.x64.exeVSCodeSetup-1.12.2.exe (1.12.2 part may change depending on the download date)Ctrl + Shift + x, enter python in the search field, and install the extension called Python that appears at the top.Recommended Posts