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