0

jthonでロボットフレームワークを使用して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の使い方を知っている人はいますか?

4

2 に答える 2

0

ソースクライアント-0.2.1.tar.gz をデバッグする必要があります。robotframework-appiumLibrary をインストールする前に、インストールできるかどうかを確認してください。「sauceclient.py」のコードを修正するには、次のように編集します。

is_py2 = sys.version_info[0] is 2
于 2016-04-28T12:35:28.063 に答える