Continuando documentando esto para las últimas versiones 1 de Ubuntu: para el servidor Ubuntu 16.04.1, el Python predeterminado es la versión 3.5, y Python 2.7 no está instalado por defecto. En una instalación nueva (tenga en cuenta que ni siquiera hay un python
ejecutable):
$ 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>
Nota: antes de continuar, es probable que desee hacer un rápido sudo apt-get update
, sudo apt-get upgrade
y sudo apt-get dist-upgrade
(tenga en cuenta exactamente lo que están haciendo estos comandos; estoy asumiendo una instalación nueva aquí).
Instalar python 2.7 es tan fácil como:
$ sudo apt-get install python2.7
El resultado inicial de instalar Python 2.7 es el siguiente:
$ 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...
Después de instalar 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
Pero todavía hay un problema, ya que aún no puede instalar módulos PyPI a través de pip
, por ejemplo, si desea un jupyter notebook, o el último scipy o numpy (etc.), querrá instalarlos pip
y luego pip install
esos, y aún recurrir a apt-get
para instalar las dependencias del sistema necesarias , como graphviz o las bibliotecas del sistema central.
$ 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
Entonces, para instalar pip, nuevamente, es tan fácil como 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
Necesitará tanto python-pip
para Python 2.7 pip
como python3-pip
para Python 3 pip
. La instalación a través de apt-get
está segura de instalar las dependencias necesarias; Por ejemplo, aquí está la salida para instalar 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...
Como resultado de esto, sucede algo interesante: ahora tiene el "estándar" (y se recomienda PEP) python2
y python3
(que son solo enlaces simbólicos a python 2.7 y 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
También querrás sudo apt-get install python3-pip
; Antes de instalar, tiene:
$ 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
Después de la instalación 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...
Las versiones resultantes:
$ 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)
Y una última cosa antes de que pueda comenzar a instalar todos sus módulos PyPI Python favoritos: probablemente tendrá que actualizar pip en sí (tanto pip2 como pip3, por separado; además, no importa si pip
se invoca a través de los python
ejecutables o el pip
ejecutables, las actualizaciones reales se almacenan en /usr/lib
):
$ sudo -H python2 -m pip install --upgrade pip
...
$ sudo -H python3 -m pip install --upgrade pip
...
Ahora puede ejecutar pip
la versión independiente o la versión incluida en python
(via python -m pip {command}
).
[1] Resumen histórico: Ubuntu anterior solo tenía Python 2.6, por lo tanto, todos los diversos métodos para instalar Python 2.7+. Más tarde, después de agregar Python 2.7 a los repositorios públicos, todavía teníamos el mismo desafío para instalar el Python 2.7 más nuevo con las últimas correcciones, que era (demasiado) frecuentemente necesario. La situación actual es mucho mejor / más simple: las Python 2.7 y 3.5 actuales (básicamente las dos únicas versiones de la plataforma Python que le interesan a las personas) que ahora están en repositorios públicos son muy estables, por lo que ahora solo tenemos que preocuparnos por instalar la última versión módulos de Python , no el último Python . Así que ahora el "problema de la última versión" de Python se ha movido parcialmente fuera de los repositorios del sistema operativo apt
y hacia PyPI & pip
).
sudo apt-get install python-2.7 python-pip