Pip: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:


=Overview=
=Overview=
<code>pip</code> is the standard package manager for Python, that allows you install and manage [[Python_Language#Package|package]] that are not part of the Python standard library.
<code>pip</code> is the standard package manager for Python, that allows you install and manage [[Python_Language#Package|package]] that are not part of the [[Python_Language#Python_Standard_Library|Python standard library]].


=Installation=
=Installation=

Revision as of 03:03, 11 January 2022

External

Internal

Overview

pip is the standard package manager for Python, that allows you install and manage package that are not part of the Python standard library.

Installation

CentOS

https://linuxize.com/post/how-to-install-pip-on-centos-7/
yum install epel-release # On Amazon Linux, it works without this
yum install python-pip