I'm using Popen because I need the env, like this:
Popen(
["boto-rsync", "..."],
env={"PATH":"/Library/Frameworks/Python.framework/Versions/2.7/bin/"},
)
The problem is Popen
runs the command as a new thread. Is there any way that I could pass the env
to subprocess.call
or prevent Popen
from creating a new thread?
Thanx
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…