Install python modules in visual studio code code example
Example 1: installing python packages in visual studio code
py -m pip install numpy
Example 2: getting started vscode python
py -3 -m venv .venv
.venv\scripts\activate
Example 3: how to get python to output in the terminal in vsc
mkdir hello
cd hello
code .