Ошибка индексатора установки pip и индексатора установки pip python3 -m - PullRequest
0 голосов
/ 21 апреля 2020

Я пытаюсь установить индексатор, но получаю сообщение об ошибке ниже. Может ли кто-нибудь помочь мне с этим?

ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-gnyzkvn1/indexer/setup.py'"'"'; __file__='"'"'/tmp/pip-install-gnyzkvn1/indexer/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-gnyzkvn1/indexer/pip-egg-info
         cwd: /tmp/pip-install-gnyzkvn1/indexer/
    Complete output (6 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-gnyzkvn1/indexer/setup.py", line 107
        except OSError, ex:
                      ^
    SyntaxError: invalid syntax
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

1 Ответ

0 голосов
/ 21 апреля 2020

Python3 не позволяет сообщение об ошибке, разделенное запятой, как Python2. Вы должны использовать дополнительный оператор print ().

except OSError as ex:
    print(ex.args)

Как документы говорят:

try: 
     raise Exception('spam', 'eggs')  
except Exception as inst:
     print(type(inst))    # the exception instance 
     print(inst.args)     # arguments stored in .args

Вот почему except OSError, ex: выдает ошибку.

...