0

Does anyone know if I can install a python library's submodule with poetry? I can install with pip

pip install library_a[sub_library]

How can I do this in poetry?

Muhammad Raihan Muhaimin
  • 5,559
  • 7
  • 47
  • 68

1 Answers1

0

To do that in poetry you can use

poetry add "library_a[sub_library]"

Make sure to add the quote " to make it work.

Muhammad Raihan Muhaimin
  • 5,559
  • 7
  • 47
  • 68