dotfiles/vscode/.vscode/extensions/ms-python.python-2024.8.0/resources/walkthrough/environments-info.md
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

617 B

Python Environments

Create Environment Dropdown

Python virtual environments are considered a best practice in Python development. A virtual environment includes a Python interpreter and any packages you have installed into it, such as numpy or Flask.

After you create a virtual environment using the Python: Create Environment command, you can install packages into the environment. For example, type python -m pip install numpy in an activated terminal to install numpy into the environment.

🔍 Check out our docs to learn more.