“pip install” quebrado em Python para Windows ao instalar o módulo opts

“pip install” quebrado em Python para Windows ao instalar o módulo opts

Estou recebendo uma cadeia de erros quando tento instalaroptano próprio script do Python pipna Python34pasta. De alguma forma, ele não consegue instalar.

Tentando opções:

----------------------------------->>>
Downloading/unpacking opts
  Downloading opts-0.1.1.tar.gz
  Running setup.py (path:C:\Users\user\AppData\Local\Temp\pip_build_user\opts\setup.py) egg_info for package opts
    Traceback (most recent call last):
      File "<string>", line 17, in <module>
      File "C:\Users\user\AppData\Local\Temp\pip_build_user\opts\setup.py", line 3, in <module>
        from distribute_setup import use_setuptools
    ImportError: No module named 'distribute_setup'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

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

  File "C:\Users\user\AppData\Local\Temp\pip_build_user\opts\setup.py", line 3, in <module>

    from distribute_setup import use_setuptools

ImportError: No module named 'distribute_setup'

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in C:\Users\user\AppData\Local\Temp\pip_build_user\opts
Storing debug log for failure in C:\Users\user\pip\pip.log

Eu tentando instalar distribute_setup:

 ---------->

C:\Python34\Scripts>pip install distribute_setup
Downloading/unpacking distribute-setup
  Could not find any downloads that satisfy the requirement distribute-setup
Cleaning up...
No distributions at all found for distribute-setup
Storing debug log for failure in C:\Users\user\pip\pip.log

O arquivo pip.log:

 ---------->
C:\Python34\Scripts\pip run on 08/17/19 02:17:45
Downloading/unpacking distribute-setup
  Getting page https://pypi.python.org/simple/distribute_setup/
  Could not fetch URL https://pypi.python.org/simple/distribute_setup/: 404 Client Error: Not Found
  Will skip URL https://pypi.python.org/simple/distribute_setup/ when looking for download links for distribute-setup
  Getting page https://pypi.python.org/simple/
  URLs to search for versions for distribute-setup:
  * https://pypi.python.org/simple/distribute_setup/
  Getting page https://pypi.python.org/simple/distribute_setup/
  Could not fetch URL https://pypi.python.org/simple/distribute_setup/: 404 Client Error: Not Found
  Will skip URL https://pypi.python.org/simple/distribute_setup/ when looking for download links for distribute-setup
  Could not find any downloads that satisfy the requirement distribute-setup
Cleaning up...
  Removing temporary dir C:\Users\user\AppData\Local\Temp\pip_build_user...
No distributions at all found for distribute-setup
Exception information:
Traceback (most recent call last):
  File "C:\Python34\lib\site-packages\pip\basecommand.py", line 122, in main
    status = self.run(options, args)
  File "C:\Python34\lib\site-packages\pip\commands\install.py", line 278, in run
    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
  File "C:\Python34\lib\site-packages\pip\req.py", line 1177, in prepare_files
    url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
  File "C:\Python34\lib\site-packages\pip\index.py", line 277, in find_requirement
    raise DistributionNotFound('No distributions at all found for %s' % req)
pip.exceptions.DistributionNotFound: No distributions at all found for distribute-setup

Responder1

pip installestá de alguma forma quebrado[.]

Isto parece improvável.

Recebo os mesmos erros no Python 2.7.16 e no Python 3.x com versões relativamente atuais de pip( pipversão 18.x e pipversão 19.x. respectivamente). E pipfunciona normalmente de outra forma para mim.

O que parece mais provável é que optsseja um módulo antigo e esteja usando referências e instruções desatualizadas em seus scripts, o que está causando erros.

Em relação à idade, considere queopts foi lançado em 2010,junto com Python 2.7e que atualmenteo suporte oficial para Python 2.7 está programado para terminar em janeiro de 2020.


Como sugestão, se este não for apenas um módulo de suporte para um script existente, você deve considerar a possibilidade de usar algo diferente de opts. Uma opção pode ser a do próprio Pythonargparsebiblioteca.


informação relacionada