0

In the page about the python lsp server there are examples about how to install it in an env based on pip; like

pip install 'python-lsp-server[all]'

or

pip install 'python-lsp-server[yapf]'

How do I get the same with Poetry ?

user1632812
  • 431
  • 3
  • 16

1 Answers1

1

Use --extras argument:

poetry install python-lsp-server --extras "yapf", "flake8"

As an alternative use -E argument:

poetry install python-lsp-server -E yapf -E flake8

Source

Daniil Ryzhkov
  • 7,416
  • 2
  • 41
  • 58