0

I'm trying to use python-poetry as dependency manager for my Python projects. I prefer to use VSCode for my development. However, vscode doesn't have support for poetry yet, that means any packages installed via vscode are installed using pip.

I wonder if we can tweak vscode settings to map pip install to poetry add to install packages via poetry?

Gama11
  • 31,714
  • 9
  • 78
  • 100
techNoob
  • 31
  • 5
  • Why not run `poetry add` in the built-in terminal? – jonrsharpe Feb 17 '19 at 14:35
  • Yes. That is doable. There are certain packages like pylint, autopep8 are suggested by vscode and if clicked on vscode get installed automatically. I know we can still install these packages manually but still want to check if there is way to install them automatically as and when vscode suggests. – techNoob Feb 17 '19 at 14:54

1 Answers1

0

There currently isn't a way to change the installation command.

Brett Cannon
  • 14,438
  • 3
  • 45
  • 40