Prérequis
Le site officiel fournit les packages d'installation pour Mac et Windows ainsi que le code source requis pour l'installation sous Linux.
L'adresse de téléchargement est la suivante :
https://www.python.org/downloads/release/python-360/
Installation
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz xz -d Python-3.6.0.tar.xz tar -xvf Python-3.6.0.tar cd Python-3.6.0 ./configure make sudo make install
Test :
$ python3.6 --version Python 3.6.0
Testez plusieurs nouvelles fonctionnalités grammaticales :
1. L'effet de
# Formatted string literals >>> name = 'Ray' >>> f"Hello {name}." 'Hello Ray.'
est équivalent à
>>> name = 'Ray' >>> "Hello {name}.".format(name=name) 'Hello Ray.'
# Underscores in Numeric Literals >>> a = 1_000_000_000_000_000 >>> a 1000000000000000 >>> '{:_}'.format(1000000) '1_000_000''1_000_000'
# Enum.auto >>> from enum import Enum, auto >>> class Color(Enum): ... red = auto() ... blue = auto() ... green = auto() ... >>> list(Color) [<Color.red: 1>, <Color.blue: 2>, <Color.green: 3>]
sudo apt-get install libreadline-dev
cd Python-3.6.0 ./configure make sudo make install