Erro de instalação do Python 3.3 - abortar a instalação

1

Quando tento atualizar o python3 version, estou recebendo o seguinte erro

sudo apt-get build-dep python3.2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  autoconf blt blt-dev debhelper dh-apparmor diffstat gettext html2text
  intltool-debian libbluetooth-dev libdb5.1-dev libffi-dev libfontconfig1-dev
  libfreetype6-dev libgdbm-dev libgettextpo0 libjs-sphinxdoc libjs-underscore
  libncursesw5-dev libreadline-dev libreadline6-dev libtinfo-dev libunistring0
  libxext-dev libxft-dev libxrender-dev libxss-dev libxss1 m4 po-debconf
  python-sphinx quilt sharutils sphinx-common tcl8.5 tcl8.5-dev tk8.5
  tk8.5-dev x11proto-render-dev x11proto-scrnsaver-dev x11proto-xext-dev xvfb
0 upgraded, 42 newly installed, 0 to remove and 0 not upgraded.
Need to get 16.6 MB of archives.
After this operation, 53.1 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Abort.

Por que estou sendo abortado? Eu me referi a esse link para atualizar o python3.

Eu gostaria de remover o python 3.2 após instalar a versão 3.3

Editar 1:

Também tentei com Y (y maiúsculo). Mas não está funcionando.

    
por anand mbs 07.06.2016 / 07:20

1 resposta

0

Não sei qual foi o erro. Mas agora eu consegui o problema acima.

O que eu fiz é,

Etapa 1) Reiniciei meu PC

2) Ran os seguintes comandos

sudo apt-get update
sudo apt-get upgrade
wget http://python.org/ftp/python/3.3.2/Python-3.3.2.tar.bz2
tar -xvjf ./Python-3.3.2.tar.bz2
cd ./Python-3.3.2
./configure --prefix=/opt/python3.3
make && make install
mkdir ~/bin
ln -s /opt/python3.3/bin/python ~/bin/py
echo 'alias py="/opt/python3.3/bin/python3"' >> .bashrc
sudo apt-get install build-essential
sudo apt-get install build-essential libncursesw5-dev libreadline-dev libssl-dev libgdbm-dev libc6-dev libsqlite3-dev tk-dev
sudo apt-get build-dep python3.2

E agora está agora instalado. Mas ainda não é possível instalar o virtualenv. E levantamos como uma nova pergunta neste link

    
por anand mbs 07.06.2016 / 09:50