Não é possível instalar o python3-tk na minha máquina ubuntu 16.04

2

Estou tentando fazer um primeiro aplicativo de desktop usando o tkinter no pycharm dessa forma.

from tkinter import *

root = Tk()
mLabel = Label(root, text="This is Header")
mLabel.pack
mLabel.mainloop()

Mas recebi uma exceção dizendo

ImportError: No module named '_tkinter', please install the python3-tk package

E eu tentei instalar o python3-tk assim

sudo apt-get install python3-tk

E eu fui criado com as exceções abaixo

ronem:::ronem:~$ sudo apt-get install python3-tk
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
libfftw3-single3:i386 libgomp1:i386 libpam-systemd:i386 
libpulsedsp:i386 libtdb1:i386
libwebrtc-audio-processing-0:i386
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
blt tk8.6-blt2.5
Suggested packages:
blt-demo tix python3-tk-dbg
The following NEW packages will be installed:
blt python3-tk tk8.6-blt2.5
0 upgraded, 3 newly installed, 0 to remove and 437 not upgraded.
1 not fully installed or removed.
Need to get 0 B/604 kB of archives.
After this operation, 2,117 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up install-info (6.1.0.dfsg.1-5) ...
/usr/sbin/update-info-dir: 3: /etc/environment: CLASSPATH: not found
dpkg: error processing package install-info (--configure):
subprocess installed post-installation script returned error exit 
status 127
Errors were encountered while processing:
install-info
E: Sub-process /usr/bin/dpkg returned an error code (1)
ronem:::ronem:~$ 

Por favor me guie O que eu estou sentindo falta

    
por Ram Mandal 31.01.2018 / 09:29

1 resposta

1

Abra o terminal e digite:

cat /etc/environment  

Verifique se há uma linha em /etc/environment que contenha a string CLASSPATH que não pertence a /etc/environment . Você deve comentar tudo de /etc/environment , exceto a primeira linha (a configuração de PATH , que começa com PATH= ), precedendo cada linha a ser comentada por um caractere # . Abra o arquivo /etc/environment para edição no editor de texto nano com o seguinte comando:

sudo nano /etc/environment  

Atalhos de teclado do editor Nano
Use a combinação de teclas Ctrl + O e depois que pressiona Enter para salvar o arquivo em sua localização atual.
Use a combinação de teclado Ctrl + X para sair do nano.

    
por karel 31.01.2018 / 09:56