vscode怎麼編譯python?

之前一直用pycharm學的python,現在想在VScode裡面玩玩,可是怎麼就運行不了啊。。。不知道哪裡出問題了。。

我裝了python的插件,

打開一個寫好的python小程序的文件夾,點綠色的運行,他讓我選擇環境,我就選擇python。

然後他就給我自動生成了launch.json文件 ,初學者,不懂這是幹嘛的=。=

還有要我請設置應用程序的啟動配置文件。我也不懂啊,在哪設置啊

不管了,然後運行,就報錯了,Failed to launch the Python Process, please validate the path ${config.python.pythonPath}

所以該怎麼做呀。


Shift + Command + P

-&> Config Task Runner

-&> Others

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "python",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}


在launch.json中"pythonPath": "C:/Program Files/Python36/python"

冒號後改成python的路徑就可以了。


F5按兩次運行,調試控制台輸出結果


裝個Code Runner擴展,各種類型的小文件可以直接運行

文件多的工程還是自己配置一下啟動設置比較好


先保存文件再打開就可以啊


推薦閱讀:

python 獲得列表中每個元素出現次數的最快方法?

TAG:Python | 編程 | VisualStudioCode |