提问者:小点点

无法在jython中安装带有机器人框架的AppiumLibrary


我正在尝试在jython中安装带有机器人框架的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'**

有人知道怎么用这个词吗?


共2个答案

匿名用户

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

is_py2 = sys.version_info[0] is 2

匿名用户

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

1.Downloadsauceclient-0.2.1和更改sauceclient.py

is_py2 = sys.version_info[0] is 2

2.安装sauceclient-0.2.1

jython-msetup.py安装

3.Run:jython-m pip安装robotframe-appiumLibrary