windows vscode 中配置python args 路径格式
【摘要】 鱼弦:公众号:红尘灯塔,CSDN博客专家、内容合伙人、CSDN新星导师、51CTO(Top红人+专家博主) 、github开源爱好者(go-zero源码二次开发、游戏后端架构 https://github.com/Peakchen)在 Windows 中的 Visual Studio Code (VS Code) 中配置 Python args 路径的格式如下:json复制"args":...
鱼弦:公众号:红尘灯塔,CSDN博客专家、内容合伙人、CSDN新星导师、51CTO(Top红人+专家博主) 、github开源爱好者(go-zero源码二次开发、游戏后端架构 https://github.com/Peakchen)
在 Windows 中的 Visual Studio Code (VS Code) 中配置 Python args
路径的格式如下:
json
复制"args": ["<path_to_python>", "<script_path>", "<arg1>", "<arg2>", ...]
其中:
<path_to_python>
:指向 Python 解释器的绝对路径,例如:
"C:\\Program Files\\Python310\\python.exe"
<script_path>
:要运行的 Python 脚本的绝对路径,例如:
"C:\\Users\\username\\Desktop\\my_script.py"
<arg1>
,<arg2>
等:要传递给 Python 脚本的任何其他参数。
示例:
以下是在 VS Code 中配置 Python args
路径以使用特定 Python 解释器运行脚本 my_script.py
并传递参数 --arg1
和 --arg2
的示例:
json
复制{
"python.pythonPath": "C:\\Program Files\\Python310\\python.exe",
"terminal.integrated.shellArgs.windows": {
"C:\\Program Files\\Python310\\python.exe": [
"-u", // 可选:启用未缓冲的标准输出
"C:\\Users\\username\\Desktop\\my_script.py",
"--arg1",
"--arg2"
]
}
}
注意:
- 确保已将 Python 解释器添加到系统路径中,以便 VS Code 可以找到它。
- 如果要使用不同的 Python 环境,请相应地更新
python.pythonPath
设置。 - 可以根据需要添加或删除其他参数。
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)