pip install 'python-lsp-server[all]' 的诗歌等价物是什么?

what's the poetry equivalent of pip install 'python-lsp-server[all]'?

在关于python lsp服务器的page中有关于如何在基于pip的环境中安装它的例子;喜欢

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

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

我如何获得与诗歌相同的内容?

使用--extras参数:

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

作为替代使用 -E 参数:

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

Source