Is there a way to execute a python script from within another python script running in a deadline environment? We have a generic deadline script to run RV, that accepts some custom command line arguments.
The users would like to be able to have access to these, so we have to implement some ‘wrapper’ scripts that execute the main script with different parametrization.
If i just use a regular subprocess spawn, it will run in our separate python installation, which will lack all the deadline python libraries that we need.
Any suggestions?