web-dev-qa-db-fra.com

paquet alpin py-pip manquant

J'essaye d'installer python pip dans mon Alpine en utilisant le fichier de composition Docker mais j'obtiens l'erreur suivante.

ERROR: unsatisfiable constraints:
  py-pip (missing):
    required by: world[py-pip]
ERROR: Service 'web' failed to build: The command '/bin/sh -c apk add py-pip' returned a non-zero code: 1
13
user1050619

Faites update en premier:

apk add --update py-pip

Ou:

apk update
apk add py-pip
24
Robert

Pour moi, l'option --no-cache a fonctionné. 

apk ajouter --no-cache py-pip

1
Yogesh Jilhawar

pour python3 sur Alpine Edge

apk ajouter py3-setuptools

0
user2601130