Continuant à documenter ceci pour les dernières versions d'Ubuntu 1 : pour le serveur Ubuntu 16.04.1, la version par défaut de Python est la version 3.5, et Python 2.7 n'est pas installé par défaut. Sur une nouvelle installation (notez qu'il n'y a même pas d' python
exécutable):
$ type python3 python2 python
python3 is /usr/bin/python3
-bash: type: python2: not found
-bash: type: python: not found
$ python3 --version
Python 3.5.2
$ python --version
The program 'python' can be found in the following packages:
* python-minimal
* python3
Try: sudo apt install <selected package>
Note: avant de continuer, vous voudrez probablement faire un rapide sudo apt-get update
, sudo apt-get upgrade
et sudo apt-get dist-upgrade
(veuillez noter exactement ce que font ces commandes; je suppose une nouvelle installation ici.)
L'installation de Python 2.7 est aussi simple que:
$ sudo apt-get install python2.7
La sortie initiale de l’installation de Python 2.7 est la suivante:
$ sudo apt-get install python2.7
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpython2.7-minimal libpython2.7-stdlib python2.7-minimal
Suggested packages:
python2.7-doc binutils binfmt-support
The following NEW packages will be installed:
libpython2.7-minimal libpython2.7-stdlib python2.7 python2.7-minimal
0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,735 kB of archives.
After this operation, 15.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
...etc, etc...
Après avoir installé Python 2.7,
$ type python3 python2.7 python3.5 python2 python
python3 is /usr/bin/python3
python2.7 is /usr/bin/python2.7
python3.5 is /usr/bin/python3.5
bash: type: python2: not found
bash: type: python: not found
Mais il y a toujours un problème, car vous ne pouvez pas encore installer les modules PyPI via pip
- par exemple, si vous voulez un ordinateur portable jupyter, ou le dernier scipy ou numpy (etc.), vous voudrez installer pip
puis pip install
ceux-ci, et toujours vous tourner vers apt-get
pour installer les dépendances système nécessaires , telles que graphviz ou les bibliothèques système principales.
$ type pip3 pip2 pip
bash: type: pip3: not found
bash: type: pip2: not found
bash: type: pip: not found
$ python3 -m pip --version
/usr/bin/python3: No module named pip
Donc, pour installer pip, encore une fois, c'est aussi simple que sudo apt-get install python-pip
:
$ sudo apt-cache search -n pip | egrep '^python[0-9]*-pip'
python-pip - alternative Python package installer
python-pip-whl - alternative Python package installer
python3-pip - alternative Python package installer - Python 3 version of the package
Vous aurez besoin des deux python-pip
pour le Python 2.7 pip
et le python3-pip
pour le Python 3 pip
. L'installation via apt-get
est sûre d'installer les dépendances requises; par exemple, voici la sortie pour installer pip2:
$ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
binutils build-essential dpkg-dev fakeroot g++ g++-5 gcc gcc-5 libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan2 libatomic1 libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libdpkg-perl libexpat1-dev libfakeroot libfile-fcntllock-perl libgcc-5-dev
libgomp1 libitm1 liblsan0 libmpx0 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libquadmath0 libstdc++-5-dev libtsan0 libubsan0 linux-libc-dev make
manpages-dev python python-all python-all-dev python-dev python-minimal python-pip-whl
python-pkg-resources python-setuptools python-wheel python2.7-dev
Suggested packages:
binutils-doc debian-keyring g++-multilib g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-multilib
autoconf automake libtool flex bison gdb gcc-doc gcc-5-multilib gcc-5-locales libgcc1-dbg
libgomp1-dbg libitm1-dbg libatomic1-dbg libasan2-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
libcilkrts5-dbg libmpx0-dbg libquadmath0-dbg glibc-doc libstdc++-5-doc make-doc python-doc
python-tk python-setuptools-doc
The following NEW packages will be installed:
binutils build-essential dpkg-dev fakeroot g++ g++-5 gcc gcc-5 libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan2 libatomic1 libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libdpkg-perl libexpat1-dev libfakeroot libfile-fcntllock-perl libgcc-5-dev
libgomp1 libitm1 liblsan0 libmpx0 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libquadmath0 libstdc++-5-dev libtsan0 libubsan0 linux-libc-dev make
manpages-dev python python-all python-all-dev python-dev python-minimal python-pip
python-pip-whl python-pkg-resources python-setuptools python-wheel python2.7-dev
0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded.
Need to get 61.1 MB of archives.
After this operation, 169 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
...etc...
Il en résulte une chose intéressante: vous disposez maintenant du "standard" (et du PEP recommandé) python2
et python3
(qui ne sont que des liens symboliques vers Python 2.7 et Python 3.5):
$ type python3 python2 python python2.7 python3.5
python3 is /usr/bin/python3
python2 is /usr/bin/python2
python is /usr/bin/python
python2.7 is /usr/bin/python2.7
python3.5 is /usr/bin/python3.5
Vous voudrez aussi sudo apt-get install python3-pip
; avant d'installer, vous avez:
$ type pip pip2 pip3
pip is /usr/bin/pip
pip2 is /usr/bin/pip2
-bash: type: pip3: not found
$ python2 -m pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ python3 -m pip --version
/usr/bin/python3: No module named pip
Après l'installation pip3
,
$ sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpython3-dev libpython3.5-dev python3-dev python3-setuptools python3-wheel python3.5-dev
Suggested packages:
python-setuptools-doc
The following NEW packages will be installed:
libpython3-dev libpython3.5-dev python3-dev python3-pip python3-setuptools python3-wheel python3.5-dev
0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.0 MB of archives.
After this operation, 55.2 MB of additional disk space will be used.
Do you want to continue? [Y/n]
...etc...
Les versions résultantes:
$ type python python2 python3 pip pip2 pip3
python is /usr/bin/python
python2 is hashed (/usr/bin/python2)
python3 is hashed (/usr/bin/python3)
pip is /usr/bin/pip
pip2 is /usr/bin/pip2
pip3 is /usr/bin/pip3
$ pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ pip3 --version
pip 8.1.1 from /usr/lib/python3/dist-packages (python 3.5)
$ python2 -m pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ python3 -m pip --version
pip 8.1.1 from /usr/lib/python3/dist-packages (python 3.5)
Et une dernière chose avant de pouvoir aller et commencer à installer tous vos modules PyPI python préféré: vous devrez probablement mettre à niveau pip lui - même ( à la fois PIP2 et PIP3, séparément, aussi, peu importe si pip
est invoquée par les python
executables ou pip
exécutables, les mises à jour réelles sont stockées dans /usr/lib
):
$ sudo -H python2 -m pip install --upgrade pip
...
$ sudo -H python3 -m pip install --upgrade pip
...
Vous pouvez maintenant exécuter pip
la version autonome ou la version fournie avec python
(via python -m pip {command}
).
[1] Récapitulatif historique: les anciennes Ubuntu n’avaient que Python 2.6, donc toutes les méthodes permettant d’installer Python 2.7+. Plus tard, après l’ajout de Python 2.7 aux référentiels publics, nous avions toujours le même défi pour installer la dernière version de Python 2.7 avec les derniers correctifs, ce qui était (trop) souvent nécessaire. La situation actuelle est bien meilleure / plus simple: les versions actuelles Python 2.7 et 3.5 (essentiellement les deux seules versions de la plate-forme Python qui comptent pour nous) qui sont maintenant dans les pensions publiques sont très stables. modules python , pas le dernier python . Alors maintenant, le "dernier problème de version" de Python a été partiellement remplacé par les dépôts de système d’exploitation apt
et vers PyPI & pip
.)
sudo apt-get install python-2.7 python-pip