我试图从我的Python程序内部创建一个virtualenv,运行源代码,然后在创建的virtualenv上运行一些命令。我意识到有多种解决方案,例如writing all the os.system commands together,using Popen or execfile等。但是似乎没有任何效果。我要执行的确切命令是:
virtualenv dsub_libs
source dsub_libs/bin/activate
dsub --help <just to understand whether the dsub command is working or not>
我将不胜感激。我再次意识到这里有很多解决此问题的方法,但是似乎都没有。如果您为我提供了stackoverflow上已经存在的解决方案,我将尝试一下,让您知道我遇到的错误。
谢谢