GNU/Linux >> Tutoriales Linux >  >> Cent OS

Cómo instalar el paquete pip en CentOS/RHEL 7 y 8

Pregunta :Es necesario instalar el paquete de software pip en CentOS/RHEL. ¿Cómo instalar el mismo?

Para CentOS/RHEL 7

CentOS/RHEL 7 usa python 2.7 como la versión del sistema de python. Python 2.x no se mantiene ni es compatible desde 2020, no se recomienda usarlo en aplicaciones. Python 3 debe usarse siempre que sea posible.

Para instalar python 3 y python3-pip en CentOS/RHEL 7, use el comando:

# yum install python3-pip

El comando instalará python3 si es necesario y pip3. Tenga en cuenta que el comando pip es pip3 para Python 3. Además, invoque python como python3 para evitar confusiones con la versión del sistema de python (2.7) que está presente en OL7 porque algunos componentes del sistema lo requieren.

Para CentOS/RHEL 8

CentOS/RHEL 8 no incluye Python 2.x. Se puede usar el mismo método de instalación para instalar python 3 y pip3:

# dnf install python3-pip

El comando instalará python3 si es necesario y pip3. Tenga en cuenta que el comando pip es pip3 para Python 3.


Cent OS
  1. Cómo instalar Python 3.5 en CentOS/RHEL y Fedora

  2. ¿Cómo extraer el paquete 7z en CentOS/RHEL/Fedora?

  3. CentOS/RHEL:Cómo instalar e iniciar el servicio Apache httpd

  4. CentOS/RHEL 7:Cómo instalar y configurar telnet

  5. Cómo instalar el paquete Mokutil en CentOS/RHEL 7 y 8

Cómo instalar y configurar Checkmk en CentOS 8 / RHEL 8

Cómo instalar y usar Firewalld en CentOS / RHEL

Cómo instalar Python 2 y Python 3 en CentOS 8

Cómo instalar Samba en RHEL y CentOS Stream

Cómo instalar y configurar Jenkins en CentOS 8 / RHEL 8

Cómo instalar Wine 5.0 en CentOS, RHEL y Fedora