> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/arch/install-pip.md).

# Install Pip

> pip - A tool for installing and managing Python packages

To install Python package installer `pip` in Arch Linux, simply execute the following command -

## Pip for Python 3

```bash
sudo pacman -S python-pip
```

## Pip for Python 2

```bash
sudo pacman -S python2-pip
```

***Source:*** [***LinuxHint***](https://linuxhint.com/install_pip_archlinux/)
