Search code examples
pythonlinuxenvironment

Is it possible to change the Environment of a parent process in Python?


In Linux When I invoke python from the shell it replicates its environment, and starts the python process. Therefore if I do something like the following:

import os
os.environ["FOO"] = "A_Value"

When the python process returns, FOO, assuming it was undefined originally, will still be undefined. Is there a way for the python process (or any child process) to modify the environment of its parent process?

I know you typically solve this problem using something like

source script_name.sh

But this conflicts with other requirements I have.


Solution

  • No process can change its parent process (or any other existing process' environment).

    You can, however, create a new environment by creating a new interactive shell with the modified environment.

    You have to spawn a new copy of the shell that uses the upgraded environment and has access to the existing stdin, stdout and stderr, and does its reinitialization dance.

    You need to do something like use subprocess.Popen to run /bin/bash -i.

    So the original shell runs Python, which runs a new shell. Yes, you have a lot of processes running. No it's not too bad because the original shell and Python aren't really doing anything except waiting for the subshell to finish so they can exit cleanly, also.