gpt4 book ai didi

python - 在 Python 中获取更改的环境变量

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

我有一个要求,其中 1 个进程将一个值设置为环境变量,我使用

在 python 中读取该值

os.environ

根据 python 文档:

This mapping is captured the first time the os module is imported, typically during Python startup as part of processing site.py. Changes to the environment made after this time are not reflected in os.environ, except for changes made by modifying os.environ directly.

我的问题是进程每次调用 python 脚本时都会设置/更改变量。
请告诉我一种读取更改值的方法。

谢谢,

最佳答案

我想您可以随时使用 os.getenv() 获取环境变量的值,这将反射(reflect)最新状态。

更新:请注意,没有一个“全局”环境这样的东西,至少在 Linux 上没有。引用维基百科:

In all Unix and Unix-like systems, each process has its own private set of environment variables. By default, when a process is created it inherits a duplicate environment of its parent process, except for explicit changes made by the parent when it creates the child.

因此,如果您从同一个父进程(例如 bash)启动(fork)两个进程,并更改其中一个进程中的环境变量,另一个进程将看不到它因为它使用了父进程环境的另一个副本。同样,如果您在启动子进程后更改父进程中的环境,子进程将看不到更改,因为它们已经创建了环境的私有(private)副本。

关于python - 在 Python 中获取更改的环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5935404/

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