Hello,
I have added the following commands to a python script:
from subprocess import Popen
prog=subprocess.Popen(["./program"],stdin=PIPE,stdout=PIPE)
and when I try to run it, I get the following error:
Executing Python script /home/leas/Diploma/sniper-5.3/
sim.scripts.pyTraceback (most recent call last):
File "/home/leas/Diploma/sniper-5.3/
sim.scripts.py", line 5, in <module>
execfile("/home/leas/Diploma/sniper-5.3/scripts/stattracel.py")
File "/home/leas/Diploma/sniper-5.3/scripts/stattracel.py", line 12, in <module>
from subprocess import Popen
File "/tmp/tmp.dxEiJiXap2/python_kit/lib/python2.7/subprocess.py", line 398, in <module>
ImportError: No module named signal
Cannot open Python script /home/leas/Diploma/sniper-5.3/
sim.scripts.pyCan anyone help?Thanks!
Alexander