いまさらVisual  Studio Code(以降、VSC)をインストールしたのでメモ
Windows10。Python。
以下の手順に沿う。

Python in Visual Studio Code
https://code.visualstudio.com/docs/languages/python

VSCのインストール

以下からダウンロード、インストール。

Download Visual Studio Code
https://code.visualstudio.com/Download

私はzip版。
任意のフォルダに展開し、PATHを通す。
私の場合はPATHの通っているところにcode.exeのショートカットを置いただけ。

Pythonのインストール

https://www.python.org/downloads/

pythoninstall01

pythoninstall02 pythoninstall03
コマンドプロンプトでpythonにPATHが通っていることを確認
pythoninstall04

VSCへのpython extensionインストール

Python extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=ms-python.python

pythoninstall05
pythoninstall06 pythoninstall07

VSCでのpython interpreterの指定

VSCを起動し、pythonを使う旨、VSCに明示する。
Ctrl + Shift + Pを押し、現れたウインドウに「Python」とタイプ、「インタープリターを選択」を選ぶ

pythoninstall08

PyLintのインストール

拡張子.pyのファイルを作ると、Linterが無いと怒られる。
インストールを選ぶ。
pythoninstall09
pythoninstall20

ライブラリのインストール

なんか画面が開いたのでpipで必要なライブラリのインストールを進める
pythoninstall21

“Microsoft Visual C++ 14.0"のインストール

「Microsoft Visual C++ 14.0」が無いと怒られたら。

copying cx_Freeze\samples\wx\wxapp.py -> build\lib.win32-3.7\cx\_Freeze\samples\wx  
creating build\lib.win32-3.7\cx_Freeze\samples\zope  
copying cx_Freeze\samples\zope\qotd.py -> build\lib.win32-3.7\cx\_Freeze\samples\zope  
copying cx_Freeze\samples\zope\setup.py -> build\lib.win32-3.7\cx_Freeze\samples\zope  
running build_ext  
building 'cx_Freeze.util' extension  
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/

このあたりから入手してインストール
https://visualstudio.microsoft.com/visual-cpp-build-tools/
https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe

MD5ハッシュは 8d4afd3b226babecaa4effb10d69eb2e
以上