Skip to content

Latest commit

 

History

History
33 lines (32 loc) · 1.34 KB

File metadata and controls

33 lines (32 loc) · 1.34 KB

VSCode Remote 設定ガイド

  1. VSCode Remote インストール
  2. アクセス元のPCで VSCode インストール
  3. アクセス元のPCのVSCodeで Remote Development 拡張をインストール
  4. アクセス元のPCの .ssh/config に以下を追加
    ForwardAgent yes
    StrictHostKeyChecking no
    TCPKeepAlive yes
    ServerAliveInterval 30
    ServerAliveCountMax 5
    
    Host sbir
      Hostname [作ったインスタンスの の public IP]
      User ubuntu
    
  5. アクセス先 ~/.ssh/authorized_keys にアクセス元の cat ~/.ssh/id_rsa.pub の結果を追加
  • アクセス元の cat ~/.ssh/id_rsa.pub の結果が何も出ない場合、
    • ssh-keygen~/.ssh/id_rsa.pub 作成
  1. アクセス元のPCのVSCodeで Ctrl(Cmd) + Shift + P を押して、以下を入力
    Remote-SSH Connect
    
  2. sbir を選択して アクセス先VSCodeに切り替え
  3. open を選択して bldg-lod2-tool フォルダーを選択
  4. アクセス先VSCodeで Ctrl(Cmd) + Shift + P を押して、以下を入力
    Python: Select Interpreter
    
  5. バージョン 3.9.19 の Python を選択
  6. アクセス先VSCodeで Pylance 拡張をインストール
  7. アクセス先VSCodeで Pylint 拡張をインストール
  8. アクセス先VSCodeで autopep8 拡張をインストール