Instalación python 3.6x en debian 8
# aptitude -y install gcc make zlib1g-dev
# wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz # tar xJf Python-3.6.0.tar.xz # cd Python-3.6.0 # ./configure # make # make install
# which python3 # python3 -V
# python3
>>> print("holas")
holas
>>>exit()
Comentarios