How to use export with Python on Linux

后端 未结 12 1550
梦如初夏
梦如初夏 2020-11-29 23:09

I need to make an export like this in Python :

# export MY_DATA=\"my_export\"

I\'ve tried to do :

# -*- python-mode -*-
# -         


        
12条回答
  •  一个人的身影
    2020-11-29 23:19

    export is a command that you give directly to the shell (e.g. bash), to tell it to add or modify one of its environment variables. You can't change your shell's environment from a child process (such as Python), it's just not possible.

    Here's what's happening when you try os.system('export MY_DATA="my_export"')...

    /bin/bash process, command `python yourscript.py` forks python subprocess
     |_
       /usr/bin/python process, command `os.system()` forks /bin/sh subprocess
        |_
          /bin/sh process, command `export ...` changes its local environment
    

    When the bottom-most /bin/sh subprocess finishes running your export ... command, then it's discarded, along with the environment that you have just changed.

提交回复
热议问题