How to Install Python Modules in VS Code


In order to install modules in VS Code Python project, follow the below steps,

  1. Open Terminal,
  2. Now create virtual environments,

    For Windows,
    py -3 -m venv .venv
    .venv\scripts\activate

    For Mac,
    python3 -m venv .venv
    source .venv/bin/activate
  3. Open Pallete (Command + Shift + P for Mac, or Control + Shift + P for Windows) and type Python: Select Interpreter and select your Python Version.
  4. Now you can run the pip command to install your required modules.
  5. Example: pip install requests
How to install Python modules in VS Code
-




Have Questions? Post them here!