Skip to content

Commit

Permalink
Add Arch installation and fix flags order
Browse files Browse the repository at this point in the history
  • Loading branch information
Paiusco committed May 11, 2024
1 parent 2bcb5b7 commit c4eb56c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,23 @@ Upgrade pipx with `brew update && brew upgrade pipx`.
sudo apt update
sudo apt install pipx
pipx ensurepath
sudo pipx ensurepath --global # optional to allow pipx actions with --global argument
sudo pipx --global ensurepath # optional to allow pipx actions with --global argument
```

- Fedora:

```
sudo dnf install pipx
pipx ensurepath
sudo pipx ensurepath --global # optional to allow pipx actions with --global argument
sudo pipx --global ensurepath # optional to allow pipx actions with --global argument
```

- Arch:

```
sudo pacman -S python-pipx
pipx ensurepath
sudo pipx --global ensurepath # optional to allow pipx actions with --global argument
```

- Using `pip` on other distributions:
Expand Down

0 comments on commit c4eb56c

Please sign in to comment.