web-dev-qa-db-fra.com

La tentative de mise à jour de libpython3.6-stdlib entraîne une erreur d'écrasement

Voici les journaux d'erreurs que j'obtiens pour essayer de mettre à jour la dépendance. Je pense que --overwrite flag peut faire le travail avec "dpkg" mais je ne suis pas sûr de l'utiliser ou non car je vois une certaine dépendance croisée là-bas. Je vous remercie beaucoup pour votre aide.

Sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  libpython3.6-stdlib
The following packages will be upgraded:
  libpython3.6-stdlib
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
8 not fully installed or removed.
Need to get 0 B/1,989 kB of archives.
After this operation, 1,393 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 225358 files and directories currently installed.)
Preparing to unpack .../libpython3.6-stdlib_3.6.5-5~16.04.york1_AMD64.deb ...
Unpacking libpython3.6-stdlib:AMD64 (3.6.5-5~16.04.york1) over (3.6.5-5~16.04.york0) ...
dpkg: error processing archive /var/cache/apt/archives/libpython3.6-stdlib_3.6.5-5~16.04.york1_AMD64.deb (--unpack):
 trying to overwrite '/usr/lib/python3.6/lib2to3/refactor.py', which is also in package python3-lib2to3 3.6.5-3~16.04.york0.2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libpython3.6-stdlib_3.6.5-5~16.04.york1_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

politique apt-cache libpython3.6-stdlib python3-lib2to3
donne ceci

libpython3.6-stdlib:
  Installed: 3.6.5-5~16.04.york0
  Candidate: 3.6.5-5~16.04.york1
  Version table:
     3.6.5-5~16.04.york1 500
        500 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu xenial/main AMD64 Packages
 *** 3.6.5-5~16.04.york0 100
        100 /var/lib/dpkg/status
python3-lib2to3:
  Installed: 3.6.5-3~16.04.york0.2
  Candidate: 3.6.5-3~16.04.york0.2
  Version table:
 *** 3.6.5-3~16.04.york0.2 500
        500 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu xenial/main AMD64 Packages
        500 http://ppa.launchpad.net/jonathonf/python-3.6/ubuntu xenial/main i386 Packages
        100 /var/lib/dpkg/status

"

11
Vipul Bhardwaj

Essayez cette commande:

Sudo dpkg --install --force all /var/cache/apt/archives/libpython3.6-stdlib_3.6.5-5~16.04.york1_AMD64.deb

Il a résolu le même problème (espérons sans aucune rupture)

21
zguest

Dans mon cas, j'ai téléchargé

Sudo apt-get download python3.6=3.6.5-3 python3.6-minimal=3.6.5-3 libpython3.6-stdlib=3.6.5-3 libpython3.6-minimal=3.6.5-3

Puis

Sudo dpkg -i --force-downgrade \*3.6.5\*

Et.. Voila! Je l'ai récupéré!

Ce message a été le premier à travailler pour moi après la mise à jour vers Mint 19.

1
Neoecos

Ressemble à ce problème sauf avec un package différent: python3-lib2to3 au lieu de scala. Essayez de purger le package de problème avec

Sudo dpkg -P python3-lib2to3

J'ai eu ce même problème avec python3-tk et cela l'a résolu pour moi.

1
Krista Davis