Como obtenho o python2.7 de volta ao comando “python”?

1

Quando eu faço o comando python i, obtenho o seguinte.

Python 2.6.8 (unknown, Apr  9 2013, 19:12:12) 
[GCC 4.7.2] on linux3
Type "help", "copyright", "credits" or "license" for more information.

Eu quero ter python2.7 de volta para esse comando. então eu tenho isso:

Python 2.7.3 (default, Sep 26 2012, 21:51:14) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

Eu já tentei alterar o symlink em /usr/bin/python , mas não funcionou :(. Eu também tenho medo de que alguns programas quebrem.

    
por Thomas15v 10.04.2013 / 11:52

2 respostas

2
sudo rm /usr/local/bin/python

Fez o truque.

    
por Thomas15v 10.04.2013 / 12:46
0

Tente executar sudo update-alternatives --config python

    
por w4etwetewtwet 10.04.2013 / 12:02