From a2bfd0c2b05c9d67ada360701477d79b21806896 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 30 Jan 2023 16:35:07 +0000 Subject: [PATCH] Install all components of pylsp --- installers/pipx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/pipx.sh b/installers/pipx.sh index c6ccdcd1..d59499dd 100755 --- a/installers/pipx.sh +++ b/installers/pipx.sh @@ -3,5 +3,5 @@ command -v pipx > /dev/null || python3 -m pip install --user pipx command -v poetry > /dev/null || python3 -m pipx install poetry pipx list | grep -i python-lsp-server && exit 0 -python3 -m pipx install python-lsp-server && python3 -m pipx inject python-lsp-server pylsp-mypy python-lsp-black python-lsp-isort +python3 -m pipx install "python-lsp-server[all]" && python3 -m pipx inject python-lsp-server pylsp-mypy python-lsp-black python-lsp-isort