You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+11-9Lines changed: 11 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -61,21 +61,26 @@ Before installing Commitizen, ensure you have:
61
61
62
62
#### Global Installation (Recommended)
63
63
64
-
The recommended way to install Commitizen is using `pipx`, which ensures a clean, isolated installation:
65
-
64
+
The recommended way to install Commitizen is using [`pipx`](https://pipx.pypa.io/) or [`uv`](https://docs.astral.sh/uv/), which ensures a clean, isolated installation:
65
+
**Using pipx:**
66
66
```bash
67
-
# Install pipx if you haven't already
68
-
pipx ensurepath
69
-
70
67
# Install Commitizen
71
68
pipx install commitizen
72
69
73
70
# Keep it updated
74
71
pipx upgrade commitizen
75
72
```
76
73
77
-
If you're on macOS, you can also install Commitizen using Homebrew:
74
+
**Using uv:**
75
+
```bash
76
+
# Install commitizen
77
+
uv tool install commitizen
78
78
79
+
# Keep it updated
80
+
uv tool upgrade commitizen
81
+
```
82
+
83
+
**(For macOS users) Using Homebrew:**
79
84
```bash
80
85
brew install commitizen
81
86
```
@@ -85,19 +90,16 @@ brew install commitizen
85
90
You can add Commitizen to your Python project using any of these package managers:
0 commit comments