要在不使用子程序的情況下從Python 腳本激活virtualenv 實例,您可以利用以下技術:
import subprocess python_bin = "/path/to/virtualenv/bin/python" script_file = "must/run/under/virtualenv/script.py" subprocess.Popen([python_bin, script_file])
activate_this_file = "/path/to/virtualenv/bin/activate_this.py" exec(open(activate_this_file).read(), {'__file__': activate_this_file})
以上是如何從沒有子進程的 Python 腳本啟動 Virtualenv?的詳細內容。更多資訊請關注PHP中文網其他相關文章!