How to pass an environment variable as a command line parameter in Run/Debug configuration in PyCharm?(如何在 PyCharm 的运行/调试配置中将环境变量作为命令行参数传递?)
问题描述
我正在尝试学习 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 configuration for "Script Parameters:" Enter
-u ${myVar}
注意:这仅适用于现有环境.变量,但不适用于 env.您在 PyCharm 运行/调试配置中设置的变量.为此,您需要查看启动前"配置
这篇关于如何在 PyCharm 的运行/调试配置中将环境变量作为命令行参数传递?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PyCharm 的运行/调试配置中将环境变量作为


- 我如何卸载 PyTorch? 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01