robotframework-安装AutoItLibrary报错line 57 print "Don't think we need to unregister the old on

首先确认是以管理员权限运行

此报错是python3环境和python2环境的print写法不一致

修改安装包中setup.py文件

所有print处加上括号
例如
print (“Don’t think we need to unregister the old one…”)

之后执行python setup.py install安装即可

你可能感兴趣的:(RobotFramework)