溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在VS Code上搭建Python開發(fā)環(huán)境的方法

發(fā)布時間:2020-10-24 12:55:11 來源:腳本之家 閱讀:206 作者:cto_ouxueying 欄目:開發(fā)技術(shù)

1、下載安裝 python https://www.python.org/downloads/windows/

web-based installer 在線安裝
executable installer exe安裝
embeddable zip file 內(nèi)嵌版本

python的安裝步聚可以參考https://www.jb51.net/article/136324.htm,注意安裝后配置 path

2、下載安裝VS Code https://code.visualstudio.com/Download

3、在VS Code里安裝 python 插件

1)ctrl + shift + p 輸入 ext install 選擇“Extensions:install extension” 回車

在VS Code上搭建Python開發(fā)環(huán)境的方法
2) 再輸入 python
3)等待安裝成功

4、在vs code中配置運行python程序的命令

1)ctrl + shift + p 搜索Configure Task Runner

在VS Code上搭建Python開發(fā)環(huán)境的方法 

2)打開tasks.json
修改 Command “tsc” 為 “python”
修改 showOutput “silent” 為 “always”
修改 Arguments [“Helloworld.ts”] 為 [“${file}”]
刪除 最后的一行屬性 problemMatcher
保存更改

在VS Code上搭建Python開發(fā)環(huán)境的方法 

下面是針對新版本的一些配置

{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "echo",
      "type": "shell",
      "command": "d:\\ProgramData\\Anaconda3\\python.exe",
      "args": [
        "1.py"
      ],
      "group": {
        "kind": "build",
        "isDefault": true
      }
    }
  ]
}

因為億速云小編么有將python添加到環(huán)境變量里面,直接給出了anaconda的命令。

3) 使用 ctrl + shift + B 執(zhí)行py程序文件

其實更多時候直接用F5就可以了,用戶配置

"python.pythonPath": "d:\\ProgramData\\Anaconda3\\python.exe"

在VS Code上搭建Python開發(fā)環(huán)境的方法

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI