Im trying to run a os.system() or subprocess.call() in python to execute vray standalone.
It always fails.
When I run the exact same command line in a shell terminal the render works.
Ive tried to create a render.bash script file in python. and run it from inside python
with os.system('/bin/bash render.bash') or subprocess.call('/bin/bash render.bash, shell=True) but the render fails.
There is no error message created..
Any ideas?
It always fails.
When I run the exact same command line in a shell terminal the render works.
Ive tried to create a render.bash script file in python. and run it from inside python
with os.system('/bin/bash render.bash') or subprocess.call('/bin/bash render.bash, shell=True) but the render fails.
There is no error message created..
Any ideas?
Comment