gpt4 book ai didi

python - 使用 Visual Studio Code 调试时如何设置 Python 解释器选项?

转载 作者:太空宇宙 更新时间:2023-11-04 02:24:00 27 4
gpt4 key购买 nike

我正在尝试使用 Visual Studio Code 调试 IronPython 脚本(我的公司需要 IronPython 来完成某些任务)。 IronPython 的版本必须使用 -X:Frames 选项执行。

以下是我如何从命令行运行脚本:

ipy -X:Frames my_script.py

-X:Frames 添加到“args”启动器属性使其成为脚本而不是解释器的参数,这是不正确的:

ipy my_script.py -X:Frames

有没有办法将参数传递给解释器本身?

如果有帮助,这是我的启动配置:

"launch": {
"configurations": [
{
"name": "My Tests",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "ipy",
"program": "C:\\temp\\my_script.py",
"args": ["-X:Frames"],
"cwd": "C:\\temp",
"env": {},
"envFile": "",
"debugOptions": [
"RedirectOutput"
]
}
]
},

最佳答案

目前无法将显式参数传递给解释器而不是脚本本身。参见 this feature request并请留下 +1 react ,为您希望看到它实现的愿望投票。

关于python - 使用 Visual Studio Code 调试时如何设置 Python 解释器选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50918266/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com