赞
踩
在VSCode编辑窗口,同时按下
Command+Shift+p
然后输入:task,
选择`任务:打开用户任务`并回车
得到原始文件
{ // 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": "echo Hello" } ]}
直接删除替换为:
{ // 有关 tasks.json 格式的文档,请参见 // https://go.microsoft.com/fwlink/?LinkId=733558 "version": "2.0.0", "tasks": [ { //command + shift + b 运行时使用 "label": "python", "type": "shell", "command": "/Users/rainbird/.virtualenv_all/py3.8.2/bin/python", "args": [ "${file}" ], "group": { "kind": "build", "isDefault": true } } ]}
其中command是我常用的一个虚拟环境,你可以指定自己的python路径.
保存
新建一个index.py
输入
print('hellow world')
然后同时按下 Command+Shift+b 就可以得到运行结果了.
长按下图可以关注哟~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。