如何設定使用 VS Code 的偵錯器來偵錯 Python 程式的工作目錄?
使用 Visual Studio Code 偵錯 Python 程式時( VS Code),指定工作目錄對於確保腳本正確運作至關重要。
要在啟動設定檔(launch.json) 中設定工作目錄,請依照下列步驟操作:
開啟launch.json 檔案:
<code class="json">"cwd": "${fileDirname}"</code>
<code class="json">"purpose": ["debug-in-terminal"]</code>
<code class="json">{ "version": "0.2.0", "configurations": [ { "name": "Python Current File (Integrated Terminal)", "request": "launch", "type": "python", "program": "${file}", "console": "integratedTerminal", "cwd": "${fileDirname}", "purpose": ["debug-in-terminal"] } ] }</code>
注意:
注意: launch.json 檔案控制項目的調試設定。如果您沒有,請透過按一下偵錯視圖中的配置齒輪圖示來建立它。以上是如何在Visual Studio Code中設定Python調試的工作目錄?的詳細內容。更多資訊請關注PHP中文網其他相關文章!