VS Code 自动运行python
2017-09-05 本文已影响0人
少年Amore
配置VS code 插件,看了文章http://www.cnblogs.com/bloglkl/archive/2016/08/23/5797805.html
评论6楼给出了配置自动运行脚本方法:
配置Python快捷键运行
设置运行配置:打开或新建一个python源文件,按下快捷键Ctrl+Shift+B运行,VSC会提示No task runner configured.,点击“Configure Task Runner”,选择“Others”,输入以下内容并保存:
{
"version": "0.1.0",
"command": "/usr/bin/python",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}
设置完毕后再次按下Ctrl+Shift+B即可自动使用python命令运行程序并在VSC中看到输出结果
我配置之后,安装了模块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, 完美。
打完收工。