简体   繁体   English

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

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

In the page about the python lsp server there are examples about how to install it in an env based on pip;在关于 python lsp 服务器的页面中,有关于如何在基于 pip 的环境中安装它的示例; like喜欢

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

or或者

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

How do I get the same with Poetry?我如何获得与诗歌相同的效果?

Use --extras argument:使用--extras参数:

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

As an alternative use -E argument:作为替代使用-E参数:

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

Source资源

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM