Skip to content

VSCode does not activate my Python venv, despite displaying the correct interpreter #25284

@kasir-barati

Description

@kasir-barati

Type: Bug

Behaviour

I am running VSCode on Ubuntu 24.04.2 LTS, with the Python VSCode extension installed.

Asked here as well: https://superuser.com/q/1898382/1730921

Steps to reproduce:

  1. Create a virtual env: uv venv .venv --python 3.12.
  2. Select the interpreter (ctrl+shift+p).
  3. Open terminal (ctrl+) and then you can see the (.venv) behind the bash, but when I run pip -V` I can see that it is not using the virtual env.

Diagnostic data

Output for Python in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Python)

2025-07-14 04:22:40.609 [info] Experiment 'pythonTerminalEnvVarActivation' is active
2025-07-14 04:22:40.609 [info] Native locator: Refresh started
2025-07-14 04:22:40.611 [info] Native locator: Refresh finished in 105 ms
2025-07-14 04:22:40.612 [info] Python interpreter path: ./.venv/bin/python
2025-07-14 04:22:40.816 [info] > pyenv which python
2025-07-14 04:22:40.816 [info] cwd: .
2025-07-14 04:22:40.871 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:22:42.550 [info] > . ./.venv/bin/activate && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python ~/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/printEnvVariables.py
2025-07-14 04:22:42.550 [info] shell: bash
2025-07-14 04:22:42.585 [info] > /usr/bin/python3 ~/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/printEnvVariables.py
2025-07-14 04:22:42.585 [info] shell: bash
2025-07-14 04:22:42.631 [info] Setting environment variable POSTGRES_PASSWORD in collection to change-me {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable PGADMIN_EXPOSED_PORT in collection to 15673 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable POSTGRES_URI in collection to postgresql://username:change-me@localhost:5432/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable RABBITMQ_DEFAULT_USER in collection to rabbitmq {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable RABBITMQ_DEFAULT_PASS in collection to 123456 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable RABBITMQ_URI in collection to amqp://rabbitmq:123456@localhost:5672 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable VIRTUAL_ENV in collection to /home/kasir/projects/python/.venv {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable PGUSER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable POSTGRESQL_EXPOSED_PORT in collection to 5432 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable APP_NAME in collection to My API {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable POSTGRES_USER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable VIRTUAL_ENV_PROMPT in collection to (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Prepending environment variable PS1 in collection with (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2025-07-14 04:22:42.631 [info] Prepending environment variable PATH in collection with /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/deactivate/bash:/home/kasir/projects/python/.venv/bin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Setting environment variable POSTGRES_DB in collection to python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:22:42.631 [info] Send text to terminal: /usr/bin/python3 /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/printEnvVariablesToFile.py /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/deactivate/bash/envVars.txt
2025-07-14 04:23:05.067 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:23:09.706 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:23:36.450 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:23:43.764 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:28:59.442 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:34:47.833 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:35:18.287 [info] Native locator: Refresh started
2025-07-14 04:35:18.375 [info] Native locator: Refresh finished in 87 ms
2025-07-14 04:35:22.453 [info] Active interpreter [/home/kasir/projects/python]:  /bin/python3
2025-07-14 04:35:22.485 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:35:22.485 [info] Python interpreter path: /bin/python3
2025-07-14 04:35:22.489 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:35:24.254 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:35:24.580 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:35:30.564 [info] Native locator: Refresh started
2025-07-14 04:35:30.673 [info] Native locator: Refresh finished in 109 ms
2025-07-14 04:35:32.401 [info] Active interpreter [/home/kasir/projects/python]:  /home/kasir/projects/python/.venv/bin/python
2025-07-14 04:35:32.415 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:35:32.415 [info] Python interpreter path: ./.venv/bin/python
2025-07-14 04:35:32.416 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:35:32.436 [info] > . ./.venv/bin/activate && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python ~/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/printEnvVariables.py
2025-07-14 04:35:32.436 [info] shell: bash
2025-07-14 04:35:32.502 [info] Setting environment variable POSTGRES_PASSWORD in collection to change-me {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable PGADMIN_EXPOSED_PORT in collection to 15673 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable POSTGRES_URI in collection to postgresql://username:change-me@localhost:5432/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable RABBITMQ_DEFAULT_USER in collection to rabbitmq {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable RABBITMQ_DEFAULT_PASS in collection to 123456 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable RABBITMQ_URI in collection to amqp://rabbitmq:123456@localhost:5672 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable VIRTUAL_ENV in collection to /home/kasir/projects/python/.venv {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable PGUSER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable POSTGRESQL_EXPOSED_PORT in collection to 5432 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable APP_NAME in collection to My API {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable POSTGRES_USER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable VIRTUAL_ENV_PROMPT in collection to (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Prepending environment variable PS1 in collection with (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2025-07-14 04:35:32.503 [info] Prepending environment variable PATH in collection with /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/deactivate/bash:/home/kasir/projects/python/.venv/bin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:32.503 [info] Setting environment variable POSTGRES_DB in collection to python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:35:44.540 [info] Native locator: Refresh started
2025-07-14 04:35:44.589 [info] Native locator: Refresh finished in 49 ms
2025-07-14 04:35:50.904 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:35:50.905 [info] Active interpreter [/home/kasir/projects/python]:  /bin/python3
2025-07-14 04:35:50.909 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:35:50.910 [info] Python interpreter path: /bin/python3
2025-07-14 04:36:06.451 [info] Native locator: Refresh started
2025-07-14 04:36:06.570 [info] Native locator: Refresh finished in 120 ms
2025-07-14 04:36:07.862 [info] Active interpreter [/home/kasir/projects/python]:  /home/kasir/projects/python/.venv/bin/python
2025-07-14 04:36:07.868 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:36:07.868 [info] Python interpreter path: ./.venv/bin/python
2025-07-14 04:36:07.868 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:36:07.870 [info] Setting environment variable POSTGRES_PASSWORD in collection to change-me {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable PGADMIN_EXPOSED_PORT in collection to 15673 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable POSTGRES_URI in collection to postgresql://username:change-me@localhost:5432/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable RABBITMQ_DEFAULT_USER in collection to rabbitmq {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable RABBITMQ_DEFAULT_PASS in collection to 123456 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable RABBITMQ_URI in collection to amqp://rabbitmq:123456@localhost:5672 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable VIRTUAL_ENV in collection to /home/kasir/projects/python/.venv {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable PGUSER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable POSTGRESQL_EXPOSED_PORT in collection to 5432 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable APP_NAME in collection to My API {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable POSTGRES_USER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable VIRTUAL_ENV_PROMPT in collection to (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Prepending environment variable PS1 in collection with (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2025-07-14 04:36:07.870 [info] Prepending environment variable PATH in collection with /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/deactivate/bash:/home/kasir/projects/python/.venv/bin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:36:07.870 [info] Setting environment variable POSTGRES_DB in collection to python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:47.273 [info] Native locator: Refresh started
2025-07-14 04:39:47.388 [info] Native locator: Refresh finished in 116 ms
2025-07-14 04:39:50.244 [info] Active interpreter [/home/kasir/projects/python]:  /bin/python3
2025-07-14 04:39:50.266 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:39:50.266 [info] Python interpreter path: /bin/python3
2025-07-14 04:39:50.267 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:39:57.645 [info] Native locator: Refresh started
2025-07-14 04:39:57.755 [info] Native locator: Refresh finished in 111 ms
2025-07-14 04:39:58.965 [info] Editor support is inactive since language server is set to None.
2025-07-14 04:39:58.968 [info] Active interpreter [/home/kasir/projects/python]:  /home/kasir/projects/python/.venv/bin/python
2025-07-14 04:39:58.977 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python
2025-07-14 04:39:58.978 [info] Python interpreter path: ./.venv/bin/python
2025-07-14 04:39:58.981 [info] Setting environment variable POSTGRES_PASSWORD in collection to change-me {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable PGADMIN_EXPOSED_PORT in collection to 15673 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable POSTGRES_URI in collection to postgresql://username:change-me@localhost:5432/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable RABBITMQ_DEFAULT_USER in collection to rabbitmq {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable RABBITMQ_DEFAULT_PASS in collection to 123456 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable RABBITMQ_URI in collection to amqp://rabbitmq:123456@localhost:5672 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable VIRTUAL_ENV in collection to /home/kasir/projects/python/.venv {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable PGUSER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable POSTGRESQL_EXPOSED_PORT in collection to 5432 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable APP_NAME in collection to My API {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable POSTGRES_USER in collection to username {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable VIRTUAL_ENV_PROMPT in collection to (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Prepending environment variable PS1 in collection with (.venv)  {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2025-07-14 04:39:58.981 [info] Prepending environment variable PATH in collection with /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/deactivate/bash:/home/kasir/projects/python/.venv/bin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:39:58.981 [info] Setting environment variable POSTGRES_DB in collection to python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2025-07-14 04:43:46.511 [info] Running installed packages checker:  {
  id: '/home/kasir/projects/python/.venv/bin/python',
  sysPrefix: '/home/kasir/projects/python/.venv',
  envType: 'Venv',
  envName: '.venv',
  envPath: '/home/kasir/projects/python/.venv/bin/python',
  path: '/home/kasir/projects/python/.venv/bin/python',
  architecture: 3,
  sysVersion: '',
  version: {
    raw: '3.12.3',
    major: 3,
    minor: 12,
    patch: 3,
    build: [],
    prerelease: []
  },
  displayName: 'Python 3.12.3 (.venv)',
  detailedDisplayName: 'Python 3.12.3 (.venv)',
  type: 'Virtual'
} /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/installed_check.py /home/kasir/projects/python/requirements.txt
2025-07-14 04:43:46.511 [info] > ./.venv/bin/python ~/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/installed_check.py ./requirements.txt
2025-07-14 04:50:39.165 [info] Running installed packages checker:  {
  id: '/home/kasir/projects/python/.venv/bin/python',
  sysPrefix: '/home/kasir/projects/python/.venv',
  envType: 'Venv',
  envName: '.venv',
  envPath: '/home/kasir/projects/python/.venv/bin/python',
  path: '/home/kasir/projects/python/.venv/bin/python',
  architecture: 3,
  sysVersion: '',
  version: {
    raw: '3.12.3',
    major: 3,
    minor: 12,
    patch: 3,
    build: [],
    prerelease: []
  },
  displayName: 'Python 3.12.3 (.venv)',
  detailedDisplayName: 'Python 3.12.3 (.venv)',
  type: 'Virtual'
} /home/kasir/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/installed_check.py /home/kasir/projects/python/requirements.txt
2025-07-14 04:50:39.165 [info] > ./.venv/bin/python ~/.vscode/extensions/ms-python.python-2025.10.0-linux-x64/python_files/installed_check.py ./requirements.txt
2025-07-14 04:57:26.358 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:57:34.676 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 04:58:44.501 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/stubs/greet_pb2_grpc.py
2025-07-14 04:58:47.051 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/stubs/greet_pb2_grpc.py
2025-07-14 04:58:58.020 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/stubs/greet_pb2_grpc.py
2025-07-14 04:59:08.748 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 05:16:09.235 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 05:18:38.044 [info] Discover tests for workspace name: undefined - uri: /home/kasir/.config/Code/User/settings.json
2025-07-14 05:18:55.575 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:19:08.976 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:19:12.697 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:20:10.298 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:20:13.736 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:20:39.137 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:22:16.561 [info] Discover tests for workspace name: undefined - uri: /home/kasir/.config/Code/User/settings.json
2025-07-14 05:22:20.412 [info] Discover tests for workspace name: undefined - uri: /home/kasir/.config/Code/User/settings.json
2025-07-14 05:22:24.429 [info] Discover tests for workspace name: undefined - uri: /home/kasir/.config/Code/User/settings.json
2025-07-14 05:22:30.250 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:22:42.207 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:23:16.182 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:24:28.389 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/.vscode/settings.json
2025-07-14 05:35:12.669 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 05:35:14.463 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py
2025-07-14 05:35:31.522 [info] Discover tests for workspace name: python - uri: /home/kasir/projects/python/src/client.py

VS Code version: Code 1.102.0 (cb0c47c0cfaad0757385834bd89d410c78a856c0, 2025-07-09T22:10:34.600Z)
OS version: Linux x64 6.11.0-29-generic
Modes:

System Info
Item Value
CPUs 13th Gen Intel(R) Core(TM) i7-13620H (16 x 1092)
GPU Status 2d_canvas: enabled
canvas_oop_rasterization: enabled_on
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
video_decode: enabled
video_encode: disabled_software
vulkan: disabled_off
webgl: enabled
webgl2: enabled
webgpu: disabled_off
webnn: disabled_off
Load (avg) 2, 2, 3
Memory (System) 62.47GB (55.57GB free)
Process Argv --crash-reporter-id 8ffe0a80-ac43-468f-b5e1-1c614ad1d4ff
Screen Reader no
VM 0%
DESKTOP_SESSION ubuntu
XDG_CURRENT_DESKTOP Unity
XDG_SESSION_DESKTOP ubuntu
XDG_SESSION_TYPE x11
Extensions (25)
Extension Author (truncated) Version
codesnap adp 1.3.4
increment-selection alb 0.2.0
project-manager ale 12.8.0
vscode-eslint dba 3.0.10
basedpyright det 1.30.1
githistory don 0.6.20
gitlens eam 17.3.0
prettier-vscode esb 11.0.0
vscode-jest-runner fir 0.4.82
go gol 0.48.0
vscode-graphql Gra 0.13.2
vscode-graphql-syntax Gra 1.3.8
vs-code-gen-mongo-id Jon 1.0.1
autoflake-extension mik 1.0.5
black-formatter ms- 2025.2.0
debugpy ms- 2025.10.0
isort ms- 2025.0.0
python ms- 2025.10.0
uuid-generator net 0.0.5
angular-console nrw 18.57.1
code-spell-checker str 4.0.47
even-better-toml tam 0.21.2
quokka-vscode Wal 1.0.733
vscode-todo-highlight way 1.0.5
vscode-proto3 zxh 0.5.5
A/B Experiments
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vswsl492cf:30256860
binariesv615:30325510
c4g48928:30535728
azure-dev_surveyone:30548225
962ge761:30959799
2e7ec940:31000449
cppperfnew:31000557
dwnewjupyter:31046869
nativeloc1:31344060
5fd0e150:31155592
dwcopilot:31170013
6074i472:31201624
dwoutputs:31242946
9064b325:31222308
copilot_t_ci:31333650
e5gg6876:31282496
pythoneinst12:31285622
c7cif404:31314491
pythonpulldiag:31343502
6gi0g917:31259952
996jf627:31283433
pythonrdcb7:31342333
usemplatestapi:31297334
0aa6g176:31307128
747dc170:31275177
aj953862:31281341
generatesymbolt:31295002
convertfstringf:31295003
pylancequickfixf:31329273
9d2cg352:31346308
convertlamdaf:31329270
usemarketplace:31343026
nesew2to5:31336538
agentclaude:31335815
nes-diff-11:31337487
replacestringexc:31346310
6abeh943:31336334
yijiwantestdri0626-c:31336931
f76d9909:31342392

Metadata

Metadata

Labels

info-neededIssue requires more information from postertriage-neededNeeds assignment to the proper sub-team

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions