Não é possível instalar o python 3.6.3 no Ubuntu 16.04 [duplicado]

1

Eu tive meu python trabalhando muito bem no Ubuntu ... até hoje, quando eu aceitei a atualização do pacote Ubuntu. Desde então, meu python 3.6 foi quebrado e eu não posso instalá-lo novamente. Eu tentei desinstalá-lo, mas não consigo reinstalá-lo. Estou tentando com

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.6

Depois que você tentar instalar, eu vejo isso

The following additional packages will be installed:
libpython3.6-minimal libpython3.6-stdlib python3.6-minimal
Suggested packages:
python3.6-venv python3.6-doc binfmt-support
The following NEW packages will be installed:
libpython3.6-minimal libpython3.6-stdlib python3.6 python3.6-minimal

e termina com este erro:

Selecting previously unselected package libpython3.6-minimal:amd64.
(Reading database ... 332625 files and directories currently installed.)
Preparing to unpack .../libpython3.6-minimal_3.6.5-1+xenial1_amd64.deb ...
Unpacking libpython3.6-minimal:amd64 (3.6.5-1+xenial1) ...
Selecting previously unselected package python3.6-minimal.
Preparing to unpack .../python3.6-minimal_3.6.5-1+xenial1_amd64.deb ...
Unpacking python3.6-minimal (3.6.5-1+xenial1) ...
Preparing to unpack .../libpython3.6-stdlib_3.6.5-1+xenial1_amd64.deb ...
Unpacking libpython3.6-stdlib:amd64 (3.6.5-1+xenial1) ...
dpkg: error processing archive /var/cache/apt/archives/libpython3.6- 
stdlib_3.6.5-1+xenial1_amd64.deb (--unpack):
trying to overwrite '/usr/lib/python3.6/tkinter/__main__.py', which is 
also in package python3-tk:amd64 3.6.5-3~16.04.york0.2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Selecting previously unselected package python3.6.
Preparing to unpack .../python3.6_3.6.5-1+xenial1_amd64.deb ...
Unpacking python3.6 (3.6.5-1+xenial1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Errors were encountered while processing:
/var/cache/apt/archives/libpython3.6-stdlib_3.6.5-1+xenial1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu não consigo instalar o trabalho. Alguém tem uma correção para isso? Realmente não sinto como reinstalar o Ubuntu

    
por Dale 06.05.2018 / 11:24

1 resposta

2

Eu resolvi esse problema (também causado pela alteração de ppa de python3.6 de jonathonf para deadsnakes) removendo python3-tk (que é o pacote "antigo" python3.6 do jonathonf ppa).

sudo apt remove python3-tk

Também não tenho certeza se isso me ajudou, mas eu limpei /usr/lib/python3.6/ após remover (python3.6, python3.6-minimal, libpython3.6-stdlib e apt autoremove)

    
por Strange Login 08.05.2018 / 23:49

Tags