4
Good afternoon,
I’m trying to emulate an IBM 3270 using the py3270 lib, but I’m making a mistake by staging the Emulator class of this lib. Anyone have any idea what it might be?
from py3270 import Emulator
def connnect():
em = Emulator(visible=False)
Error:
File "/usr/lib/python2.7/subprocess.py", line 710, in init errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child raise child_exception Error: [Errno 2] No such file or directory
In fact it seems that its problem was exclusively of incorrect version installed, no?
– Luiz Vieira