Mudança entre versões alternativas do Python no Ubuntu

-1

Eu sou novo no Ubuntu e queria mudar minha versão para o Python 3.4.1.

Então eu corri o comando:

$ sudo update-alternatives --config python
update-alternatives: error: no alternatives for python

Mas então eu tento executar o comando:

$ sudo apt-get install python3.4
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3.4 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.

Eu não sei como alternar entre as versões. Por favor ajude.

    
por sandhus 25.06.2014 / 03:26

2 respostas

1

python 2.7 e python 3.4 já estão pré-instalados no seu Ubuntu 14.04.

  • Execute o comando python3 no terminal para obter o interpretador python3.

  • Execute o comando python no terminal para obter o interpretador python2.

por Avinash Raj 25.06.2014 / 03:27
1

Analise o virtualenv e o virtualenvwrapper. Eles permitem que você configure um "ambiente" com uma versão do python. O legal é que você pode instalar pacotes nesse ambiente e depois mudar para outro ambiente com um conjunto diferente de pacotes instalados - essencialmente executando diferentes versões do python sem conflitos de bibliotecas.

Ref: link

    
por pcm 25.06.2014 / 03:35