vscode中launch.json


描述

簡單的一鍵F5運行當前文件。

樣例

{
    // 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: 當前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "cwd": "${workspaceFolder}",
            "args": [],
            "pythonPath": "${command:python.interpreterPath}"
        }
    ]
}

常用

"cwd":執行代碼的路徑。
"args":參數。["--input", "", "--output", ""]
"pythonPath": "${command:python.interpreterPath}" //終端中的python。
也可以直接設置為conda虛擬環境中的python(python.exe的絕對路徑)


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM