- remote explorの設定
login_name@ip で接続
-
Windows上で使っているVSCodeからRemote ExploerでリモートPCを開く。
-
VSCode上からpythonスクリプトを実行するとpythonライブラリが無いと怒られる。しかし、リモートPC上ではそのようなエラーにはならず正常に終了する。
-
2.でVSCodeから実行した際のログを見ると、/usr/bin/pythonを使っている。リモートPCでも/usr/bin/pythonを使ってPythonスクリプトを実行するとVSCodeと同じエラーになる。/usr/share/miniconda3/bin/python3を使うと正常に実行できることが分かった。
-
launch.json を開く
- launch.json に "python": "/usr/share/miniconda3/bin/python3" を追加することで期待通りに動作した。
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"python": "/usr/share/miniconda3/bin/python3",
"program": "scripts/generate_model.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
-
(疑問点) 4. の後も、VSCode上ではなぜか、/usr/bin/pythonを使っているようなログになっている。しかし、スクリプトは/usr/share/miniconda3/bin/python3を使って動作させた際と同じに動く。
-
引数の設定
argsを設定する
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"python": "/usr/share/miniconda3/bin/python3",
"program": "scripts/generate_model.py",
"console": "integratedTerminal",
"args": [
"--model_name=add"
],
"justMyCode": true
}
]
}