Skip to content

Commit

Permalink
docs: add install instructions for Fedora (pypa#1239)
Browse files Browse the repository at this point in the history
Add instructions on how to install pipx on Fedora using dnf.

pipx has been packaged in Fedora since Fedora 32 (Jan 202) and is
maintained by @musicinmybrain.

See:
- https://src.fedoraproject.org/rpms/pipx - packaging
- https://bugzilla.redhat.com/1790241 - original package review
  • Loading branch information
markmc authored Feb 2, 2024
1 parent e9fd497 commit e28c7b1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@ sudo apt install pipx
pipx ensurepath
```

- Ubuntu 22.04 or below
- Fedora:

```
sudo dnf install pipx
pipx ensurepath
```

- Using `pip` on other distributions:

```
python3 -m pip install --user pipx
Expand Down
1 change: 1 addition & 0 deletions changelog.d/1239.doc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add installation instructions for Fedora
18 changes: 16 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ sudo apt install pipx
pipx ensurepath
```

- Ubuntu 22.04 or below
- Fedora:

```
sudo dnf install pipx
pipx ensurepath
```

- Using `pip` on other distributions:

```
python3 -m pip install --user pipx
Expand Down Expand Up @@ -147,12 +154,19 @@ On macOS:
brew update && brew upgrade pipx
```

On Linux:
On Ubuntu Linux:

```
sudo apt upgrade pipx
```

On Fedora Linux:

```
sudo dnf update pipx
```


On Windows:

```
Expand Down

0 comments on commit e28c7b1

Please sign in to comment.