python 3.3.2 instalação

4

Estou usando o Ubuntu 12.04 e já tenho o Python 2.7 instalado. Eu preciso do python 3.3.2 para ser instalado em algum curso. Então eu estou tentando fazer isso. Eu encontrei este link do Ubuntu

Como faço para instalar a versão mais recente do Python no Ubuntu?

Eu tentei fazer o mesmo. Ele foi bem-sucedido, mas não está executando o python 3.3.2, mas executando o python 3.2.3. Como devo instalar o python 3.3.2?

    
por Karan Talasila 05.07.2013 / 06:29

1 resposta

7

Eu tentaria

pip install python3.3.2 --user

ou

wget http://python.org/ftp/python/3.3.2/Python-3.3.2.tar.bz2
tar xf Python-3.3.2.tar.bz2
cd Python-3.3.2
./configure --prefix=/usr/local
make && sudo make altinstall

Em ambos os casos, você deve tentar iniciá-lo com

$ python3.3
    
por Adobe 05.07.2013 / 09:33