dotfiles/vscode/.vscode/extensions/donjayamanne.python-environment-manager-1.2.4/resources/walkthrough/environments-info.md
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

11 lines
617 B
Markdown

## Python Environments
<img src="create-environment.svg" alt="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](https://aka.ms/pythonenvs) to learn more.