300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > VsCode进行python调试配置设置

VsCode进行python调试配置设置

时间:2020-01-13 05:20:26

相关推荐

VsCode进行python调试配置设置

使用vscode进行调试的时候,往往需要进行调试配置文件设置。如下为调试python过程中常用的参数的示例和说明。更多内容参考官方说明

{// Use IntelliSense to learn about possible attributes.// Hover to view descriptions of existing attributes.// For more information, visit: /fwlink/?linkid=830387"version": "0.2.0","configurations": [{"name": "Python: Current File",// The name appears in the VS Code dropdown list"type": "python",//程序类型"request": "launch","pythonPath": "/data/venv/bin/python3.6", // 指定python解释器"program": "${file}", //指定运行入口程序,默认是当前程序,可以给定具体的路径"cwd": "${fileDirname}", //指定运行空间目录,defaults to ${workspaceFolder} (the folder open in VS Code)."console": "integratedTerminal","args":["--batch_size","16","--device","cuda"] // 指定程序运行参数}]}

参考资料:

vscode配置python调试_VSCode——如何设置调试工作目录微软VSCode官网微软VSCode官网_python配置参数

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。