配置VS code 插件儒溉,看了文章http://www.cnblogs.com/bloglkl/archive/2016/08/23/5797805.html
評論6樓給出了配置自動運行腳本方法:
配置Python快捷鍵運行
設(shè)置運行配置:打開或新建一個python源文件,按下快捷鍵Ctrl+Shift+B運行悟耘,VSC會提示No task runner configured.,點擊“Configure Task Runner”,選擇“Others”,輸入以下內(nèi)容并保存:
{
"version": "0.1.0",
"command": "/usr/bin/python",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}
設(shè)置完畢后再次按下Ctrl+Shift+B即可自動使用python命令運行程序并在VSC中看到輸出結(jié)果
我配置之后缅疟,安裝了模塊leancloud
pip install leancloud
然后
shit + cmd + B
居然報錯:
import leancloud
ImportError: No module named leancloud
分析后分别,原因為我使用了Anoconda安裝了python3,路徑不對存淫。
首先找到python3 路徑
which python3
-> anaconda/bin/python3
然后修改下 tasks.json
{
"version": "0.1.0",
"command": "/anaconda/bin/python3",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}
然后 run, 完美耘斩。
打完收工。