我正在从 linux 环境迁移到 Windows。
我的一个脚本通过 c3270 使用 py3270 来自动化终端。
我已经安装了这里的 wc3270 设置:http: //x3270.bgp.nu/WindowsInstall.html
成功:
pip install py3270
我正在尝试这个测试脚本只是为了让事情正常进行:
from py3270 import *
import sys, os
host = "tn3270.testing.net"
e = Emulator(visible=True)
e.connect(host)
e.wait_for_field()
我得到错误:
“Windows 找不到 wc3270,请确保您输入的名称正确”
有谁知道我可以做些什么来让 wc3270 安装被 Windows 识别?