0
デバッグコンソールに入力できないため、外部端末のVSコードでデバッガを実行しようとしています。 外部端末デバッガ(VSコード)
これは、外部端末用のlaunch.json設定ファイルの一部です。
{
"name": "Python: Terminal (external)",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.pythonPath}",
"program": "${file}",
"cwd": "",
"console": "externalTerminal",
"env": {},
"externalConsole": true,
"envFile": "${workspaceRoot}/.env",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit"
]
},
彼らはhere言ったと私はとか、その文なしにしようとしたとして、私は"externalConsole": true
一部を追加しました。
が、私はこのエラーを取得し、
Debug adapter process has terminated unexpectedly
私はJSONファイル内docsとのIntelliSenseを試してみましたが、私は理解し、それを動作させることはできません。
私はlinux btwを使用しています –