Comment revenir en arrière après un pip Install -u raté sur un paquet Python ?
La commande pip install -U (ou --upgrade) remplace la version installée d’un paquet Python par la dernière disponible sur PyPI. Quand cette mise à jour casse une dépendance ou introduit une incompatibilité, pip ne propose aucun mécanisme natif de retour arrière. Il faut donc reconstruire l’état précédent manuellement, en ciblant la bonne version du paquet concerné.
Ce que pip
…
The post Comment revenir en arrière après un pip Install -u raté sur un paquet Python ? appeared first on Datta.
