Python 3.2 remove issue

3

Instalei o python3.2 junto com o python 2.7.3 no Ubuntu 12.04 até sudo apt-get install python3.2 .

E agora eu o removi através de sudo apt-get remove python3.2 . Então, quando digito python3.2 no terminal, mostra:

Python 3.2.3 (default, Oct 19 2012, 20:10:41) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
    
por Herks 25.02.2013 / 14:51

1 resposta

4

O programa /usr/bin/python3.2 não está no pacote python3.2 , mas em python3.2-minimal . Como python3.2 depende de que tenha sido instalado automaticamente.

Para remover todo o Python 3.2, você precisa remover python3.2-minimal .

    
por Florian Diesch 25.02.2013 / 15:16

Tags