无法在jython中使用robotframework安装AppiumLibrary

时间:2016-04-28 08:13:37

标签: python jython robotframework python-appium

我正在尝试使用jython中的robotframework安装AppiumLibrary

遵循的步骤:

jython -m pip install robotframework-appiumLibrary

错误:

Downloading/unpacking sauceclient>=0.1.0 (from robotframework-appiumLibrary)
  Downloading sauceclient-0.2.1.tar.gz

  Running setup.py (path:C:\Users\ABHISH~1\AppData\Local\Temp\pip_build_abhishek
singh\sauceclient\setup.py) egg_info for package sauceclient

  Traceback (most recent call last):
File "<string>", line 17, in <module>

  File "C:\Users\ABHISH~1\AppData\Local\Temp\pip_build_abhisheksingh\saucecl
ient\setup.py", line 27, in <module>

  from sauceclient import __version__

  File "sauceclient.py", line 26, in <module>

   is_py2 = sys.version_info.major is 2
    AttributeError: 'tuple' object has no attribute 'major'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 17, in <module>

  File "C:\Users\ABHISH~1\AppData\Local\Temp\pip_build_abhisheksingh\sauceclient
\setup.py", line 27, in <module>

from sauceclient import __version__
 File "sauceclient.py", line 26, in <module>

   is_py2 = sys.version_info.major is 2

**AttributeError: 'tuple' object has no attribute 'major'**

任何人都知道如何使用这个libaray?

2 个答案:

答案 0 :(得分:0)

您需要调试sauceclient-0.2.1.tar.gz。在安装robotframework-appiumLibrary之前,看看是否可以安装它。 修复&#34; sauceclient.py&#34;中的代码编辑为:

is_py2 = sys.version_info[0] is 2

答案 1 :(得分:0)

非常感谢,这对我有用,这是我遵循的步骤:

1.下载sauceclient-0.2.1并更改sauceclient.py

is_py2 = sys.version_info[0] is 2

2。安装sauceclient-0.2.1

jython -m setup.py install

3.Run: jython -m pip install robotframework-appiumLibrary