From 02d42aa01d56f255c7cc9cb7ae07770d9d99cc3c Mon Sep 17 00:00:00 2001 From: Kale Kundert Date: Sun, 24 Sep 2023 14:01:52 -0400 Subject: [PATCH] Docs: recommend installing with pipx --- docs/installation.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index e0fde805..c693fb58 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -1,6 +1,11 @@ ## Fully supported -### Pip (recommended) +### Pipx (recommended) +```{.sh .copy} +pipx install gitlint --include-deps +``` + +### Pip ```{.sh .copy} pip install gitlint ``` @@ -70,4 +75,4 @@ eval "$(_GITLINT_COMPLETE=zsh_source gitlint)" # Fish: add to ~/.config/fish/completions/foo-bar.fish eval (env _GITLINT_COMPLETE=fish_source gitlint) -``` \ No newline at end of file +```