In order to install modules in VS Code Python project, follow the below steps,
- Open Terminal,
- Now create virtual environments,
For Windows,py -3 -m venv .venv .venv\scripts\activate
For Mac,python3 -m venv .venv source .venv/bin/activate - Open Pallete (Command + Shift + P for Mac, or Control + Shift + P for Windows) and type Python: Select Interpreter and select your Python Version.
- Now you can run the pip command to install your required modules.
- Example: pip install requests

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!