Problema com a instalação do tweepy

0

Estou enfrentando o seguinte erro ao instalar tweepy no Ubuntu.

sudo pip install tweepy
Downloading/unpacking tweepy
  Running setup.py egg_info for package tweepy
    Traceback (most recent call last):
      File "<string>", line 14, in <module>
      File "/home/vivek/build/tweepy/setup.py", line 17, in <module>
        install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
    TypeError: parse_requirements() got an unexpected keyword argument 'session'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

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

  File "/home/vivek/build/tweepy/setup.py", line 17, in <module>

    install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())

TypeError: parse_requirements() got an unexpected keyword argument 'session'

----------------------------------------
Command python setup.py egg_info failed with error code 1 in /home/vivek/build/tweepy
Storing complete log in /home/vivek/.pip/pip.log

Por favor ajude. Eu pesquisei esse erro, mas não encontrei ajuda.

    
por Vivek 14.11.2015 / 02:26

1 resposta

0

  • (1) Por favor, verifique a versão do pip.

    >pip list
    BeautifulSoup (3.2.1)
    oauthlib (1.0.3)
    pip (7.1.2)         # <-- this is mine, today.
    tweepy (3.5.0)
    ....
    
  • (2) Se o seu não é assim, tente isso.

    >pip install --upgrade pip # <-- to upgrade pip by pip
    >pip install tweepy
    
  • (nota de 3) Porque eu uso no Windows 8, eu não uso 'sudo'. Por favor, tente POR SUA PRÓPRIA CONTA E RISCO, Boa Sorte.

por 10i10 15.12.2015 / 09:21