我从https://github.com/dtmilano/AndroidViewClient下载了.zip,版本为5.1.1 。 我已将ANDROID_VIEW_CLIENT_HOME = / path /添加到/ AndroidViewClient 和PYTHONPATH = / path / to / AndroidViewClient / src。
现在当我运行python test-connect-to-device.py时,我得到了引发的AttributeError
答案 0 :(得分:2)
您似乎使用Python 3来运行只能在Python 2中运行的代码。您必须安装Python 2并使用Python 2运行您的脚本来解决这个问题。
例如,代码
name = "blah"
raise AttributeError, name
runs and raises an AttributeError on Python 2但raises a SyntaxError and fails to compile on Python 3。