> 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/remove-ppa-from-system.md).

# Remove PPA From System

To remove PPA from system, we can use either of the following methods -

## Method 1

We can use `--remove` flag in `add-apt-repository` command

```bash
sudo add-apt-repository --remove ppa:example/ppa
```

## Method 2

We can use `ppa-purge`

```bash
sudo apt-get install ppa-purge
sudo ppa-purge ppa:example/ppa
```

***Source:*** [***ItsFoss***](https://itsfoss.com/how-to-remove-or-delete-ppas-quick-tip/)
