I am trying to run stc automation with python in linux. As I understand it's prerequisites are 32 bit machine and python 2.7.6
So I built python2.7.6 from source and using that as my python interpreter. My test script is as follows
from StcPython import StcPython #print dir(StcPython) stc = StcPython() print dir(stc)
When I run this code by "/path/to/python2.7.6 test_script.py, it fails with "Could not load a transcoding service"
What is the reason of the error?