Raul Chiarella
Raul Chiarella

Reputation: 712

Install (Or suggest to) missing imported Python modules on VS Code like PyCharm does

When we import a module that isn't currently installed on the Python used on the current environment, PyCharm suggest us to 'install missing module', if you click install, it'll install it automatically...

Is there any plugin for vscode that does that or something like that? I want to import emoji for example, and like pycharm does, suggest me to install the missing module, so I won't have to do manually a pip install

Is there a plugin that does this for vscode? Thank you

Upvotes: 9

Views: 10094

Answers (2)

Coder
Coder

Reputation: 1909

The short answer is that this feature doesn't exist as of now.

This request has been long outstanding but not considered a priority.

Upvotes: 1

I think that your request is already ongoing on vscode-python extension:

https://github.com/microsoft/vscode-python/issues/8062

I suggest to follow this issue to see when it's ready for production.

Upvotes: 5

Related Questions