Details:
File "C:\Python34\lib\site-packages\modbus_tk\simulator.py", line 142, in init
raise Exception("%s platform is not supported yet" % os.name)
Exception: nt platform is not supported yet
I think it is a bug of simulator.py, in line 137
if os.name == "posix":
should be
elif os.name == "posix":
While I do like that, it works.
Details: File "C:\Python34\lib\site-packages\modbus_tk\simulator.py", line 142, in init raise Exception("%s platform is not supported yet" % os.name) Exception: nt platform is not supported yet I think it is a bug of simulator.py, in line 137 if os.name == "posix": should be elif os.name == "posix": While I do like that, it works.