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

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap