问题描述
我正在尝试学习 PyCharm,需要将环境变量作为命令行参数传递给我的进程,例如在 Linux 上执行等效的 myScript.py -u $myVar
,或在 Windows 上执行 myScript.py -u %myVar%
.
I am trying to learn PyCharm, need to pass an environment variable as a command line parameter to my process, e.g. execute an equivalent of myScript.py -u $myVar
on Linux, or myScript.py -u %myVar%
on Windows.
如何在 PyCharm 配置中指定它?我不希望我的脚本依赖于名称 myVar
,只依赖于该环境变量的内容.
How do I specify that in the PyCharm configuration? I don't want my script to depend on the name myVar
, just on the content of that environment variable.
推荐答案
在 PyCharm 运行/调试配置中对于脚本参数:"输入
in PyCharm Run/Debug configurationfor "Script Parameters:"Enter
-u ${myVar}
注意:这仅适用于现有环境.变量,但不适用于 env.您在 PyCharm 运行/调试配置中设置的变量.为此,您需要查看启动前"配置
这篇关于如何在 PyCharm 的运行/调试配置中将环境变量作为命令行参数传递?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!