When selecting from the command palette Python: Select Interpreter, we can create a virtual environment using Venv or Conda. I propose to add to this list the faster https://github.com/astral-sh/uv tool, which creates an environment with:
uv venv --python path/to/interpreter
And install dependencies of the project in the current directory with the flag all with:
Or for a simple pip install command:
When selecting from the command palette
Python: Select Interpreter, we can create a virtual environment usingVenvorConda. I propose to add to this list the fasterhttps://github.com/astral-sh/uvtool, which creates an environment with:And install dependencies of the project in the current directory with the flag
allwith:Or for a simple
pip installcommand: