Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install a new python module on VSCode?

I'm trying to install new python modules on my computer and I know how to install through the terminal, but I wish to know if there is a way to install a new module directly through VSCode (like it is possible on PyCharm)?

I already installed through the terminal, it isn't a problem, but I want to install without be obligate to open the terminal when I'm working on VSCode.

like image 951
TCrepalde Avatar asked Aug 01 '19 13:08

TCrepalde


People also ask

How do I install a Python module?

The best and recommended way to install Python modules is to use pip, the Python package manager. Otherwise: Download get-pip.py from https://bootstrap.pypa.io/get-pip.py. Run python get-pip.py.


1 Answers

You should open the terminal inside the VSCode and install the modules you want. something like👇

VSCode Snapshot

if that's not you meant, please let me know.

like image 96
Mithilesh Avatar answered Oct 20 '22 00:10

Mithilesh