web-dev-qa-db-fra.com

Comment réparer `` La commande a échoué avec l'état de sortie 1 '' avec l'installation de pip

Je rencontre des problèmes pour installer pytype avec pip install comme indiqué ici:

Système d'exploitation: CentOS 7

Python: Python3.6

Pip: 20.0.2

$ pip3 install pytype
Collecting pytype
  Using cached pytype-2020.2.20.tar.gz (1.1 MB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'error'
  ERROR: Command errored out with exit status 1:
   command: /home/aeu1/venv/bin/python3 /home/aeu1/venv/lib64/python3.6/site-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmp34nr30o0
       cwd: /tmp/pip-install-z9y24cb4/pytype
  Complete output (7 lines):
  running Egg_info
  writing pytype.Egg-info/PKG-INFO
  writing dependency_links to pytype.Egg-info/dependency_links.txt
  writing entry points to pytype.Egg-info/entry_points.txt
  writing requirements to pytype.Egg-info/requires.txt
  writing top-level names to pytype.Egg-info/top_level.txt
  error: package directory 'find:' does not exist
  ----------------------------------------
ERROR: Command errored out with exit status 1: /home/aeu1/venv/bin/python3 /home/aeu1/venv/lib64/python3.6/site-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmp34nr30o0 Check the logs for full command output.

Merci pour toute aide !

1
Antoine ESCOURROU

Ce répertoire de package find: vient de setup.cfg; ce n'est en fait pas un répertoire de paquets mais une instruction pour setuptools de trouver une liste de sous-répertoires à installer.

J'ai installé avec succès le paquet pour Python 2.7 et 3.5. Donc mon conseil est de mettre à jour pip et setuptools

pip install -U pip setuptools

puis réessayez pip install pytype.

1
phd