microsoft / vscode-python

Python extension for Visual Studio Code
https://aka.ms/pvsc-marketplace
MIT License
4.29k stars 1.18k forks source link

Use worker threads for launching conda and windows registry when discovering #22146

Closed karrtikr closed 5 months ago

karrtikr commented 11 months ago

https://github.com/microsoft/vscode-python/issues/21755

Spike results

Based on CPU profiles in https://github.com/microsoft/vscode-python/issues/21755#issuecomment-1730302574 discovery is mainly blocked by:

Note spawning python binaries is fine, it blocks very little of the time.

Tyriar commented 10 months ago

@deepak1556 do you know why spawn would be blocking the thread for so long here?

image

Profiles at https://github.com/microsoft/vscode-python/issues/21755#issuecomment-1730302574

karrtikr commented 10 months ago

Note this is when spawning the conda binary, similarly spawning REG binaries can seldomly be like this. But python binaries are much cheaper for some reason.

karrtikr commented 10 months ago

It's not just us, the git extension while spawning also runs into this:

image

DonJayamanne commented 10 months ago

do you know why spawn would be blocking the thread for so long here?

This was my observation a few years ago as well ( https://github.com/microsoft/vscode-python/issues/15813#issue-844892343) Back then I reached out to jrieken , and he indicated that in node, spawning processes can block the main thread for a few ms. However we didn't try to dig further into why spawning conda was blocking for a few seconds, primarily because the suggestion was not being actively worked on back then

karrtikr commented 10 months ago

Performance issue filled for other cases here: https://github.com/microsoft/vscode/issues/198384

Tyriar commented 10 months ago

Yeah a few ms is expected, but it's very different from over 2 seconds which is what the first spawn takes in my screenshot.

deepak1556 commented 10 months ago

@Tyriar not sure but having some basic data points from @karrtikr I feel there is a binary scanning delaying the spawn call. @karrtikr can you collect an event trace following the steps below.

Screenshot 2022-08-23 200440

karrtikr commented 10 months ago

I've shared the event trace via email.

deepak1556 commented 10 months ago

@karrtikr thanks for the trace, I looked into it and found it to be unusual, the uv_spawn (equivalent of child_process.spawn) call in question shows a wait time of 2.7s but the interesting bit is that wait is on the thread performing v8 cpu profiling, not what I had expected. uv_spawn_sample_delay

Can you provide me another windows event trace of the slow conda or win reg or git spawn calls but this time don't invoke the v8 cpu profiler. I am curious to see how the trace comes out without any node inspector involved.

DonJayamanne commented 10 months ago

@deepak1556 Could this be related https://github.com/nodejs/node/issues/14917

Similar finding in the above issue as well, (related to git exe in VS Code https://github.com/microsoft/vscode/issues/71290) @bpasero @lszomoru /cc

deepak1556 commented 10 months ago

Issue is unrelated to the node.js issue, it is specific to fork syscall on linux impacted with v8 heap regions which is already fixed in upstream and also fixed in our stable versions for a while now. I haven't seen similar issues for windows and the current data is still too early to conclude.

karrtikr commented 10 months ago

Shared the event trace again.

I'm assuming by v8 cpu profiling you meant the Flame Chart Visualizer for JavaScript Profiles extension I had been using. This time I do not attach it, but I'm still debugging the extension, so the node debugger was still attached.

deepak1556 commented 9 months ago

@karrtikr thanks for new traces, I looked at them today and this is better than the first trace. Compiling the findings below,

Process id (21040) refers to the extension host in the below screenshots

reg_process_launch_time

‏uv_spawn_delay

realtime_protection_delay

Tyriar commented 9 months ago

Given it looks like it's related to defender, consider not doing a large change like moving parts to workers. This will complicate things significantly but not help many users as in the past most defender problems like this are mainly restricted to MS employees and those without properly configured defender. There are some things you can try to make defender play nicer like ensuring your Dev folder(s) are excluded from scanning, using Dev drives, etc.

karrtikr commented 9 months ago

It doesn't look like I have access to disable real time scanning as it's controlled by the admin, but I added the folder containing the problematic binary conda to exclusions list:

image

Unfortunately it doesn't seem to help, as you can see in the following screenshot it still takes 3 seconds:

image image

Let me know if any other information is required.

deepak1556 commented 9 months ago

Sent a mail to MS defender mailing list, lets wait for the response before proceeding further.

deepak1556 commented 9 months ago

@karrtikr the affected machine OS version is quite old and unsupported, defender team has requested to get trace after updating the machine to latest stable windows,

The collected traces are from a machine running an old insiders build from 2021/12/03 (22518.1000.amd64fre.rs_prerelease.211203-1458) which is unsupported and for which symbols are no longer available.

Please try the following next steps,

1) Update OS to latest stable or insider windows 2) If the issue still repros, let's sync up. I will help you in collecting the required traces (steps are different than before)

deepak1556 commented 9 months ago

@karrtikr did you have a chance to try the above steps ?

karrtikr commented 9 months ago

@deepak1556

image image image

It seems to be much better! It occasionally goes up to 200-250ms but not more.

We launch a lot of binaries though, so overall it still blocks a few seconds in accumulation.

deepak1556 commented 9 months ago

Numbers do look reasonable, however I am curious about the >150ms ones. For the registry operations, I see that you are using https://www.npmjs.com/package/winreg which basically does spawn calls using reg binaries not the best way to do it given the number of queries I see in the screenshot. Have you considered using a native module performing the relevant registry syscalls ? For VSCode core, we use https://github.com/microsoft/vscode-windows-registry it only exposes a getter api but we can add additional api as needed.

karrtikr commented 9 months ago

however I am curious about the >150ms ones

Okk, let me know if I should still get the trace for it. It might just be the heavy load on the machine due to so many spawn calls.

Have you considered using a native module performing the relevant registry syscalls ? For VSCode core, we use https://github.com/microsoft/vscode-windows-registry it only exposes a getter api but we can add additional api as needed.

Interesting, we can definitely have a look. Although > 150ms still happens for conda.

deepak1556 commented 9 months ago

Can you isolate the conda spawn calls into a minimal script, I want to compare the times between Node.js and VSCode.

karrtikr commented 7 months ago

Sorry for the delayed response, missed the notification due to holidays, let me know if you still need the info. Closing this issue as experiment is ready to be rolled out, and we can look into further investigating it based on experiments results.

deepak1556 commented 7 months ago

If you can provide sample for https://github.com/microsoft/vscode-python/issues/22146#issuecomment-1857324356 we can investigate the > 150ms calls.

rzhao271 commented 7 months ago

Hi @karrtikr, is this issue verifiable?

karrtikr commented 7 months ago

Verification steps:

andreamah commented 7 months ago

I have some weird behavior. I have before:

image

And after

image

For some reason, the condaenv is repeated after.

Logs: ``` 2024-02-20 15:55:53.685 [info] Experiment 'pythonaacf' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonDiscoveryUsingWorkerscf' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonRecommendTensorboardExt' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonREPLSmartSend' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonSurveyNotification' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonTerminalEnvVarActivation' is active 2024-02-20 15:55:53.685 [info] Experiment 'pythonTestAdapter' is active 2024-02-20 15:55:53.685 [info] Default formatter is set to ms-python.autopep8 for workspace c:\Users\andreamah\GitHub\vscode 2024-02-20 15:55:53.685 [info] Test server listening. 2024-02-20 15:55:53.685 [info] Python interpreter path: ~\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:55:53.935 [info] > conda info --json 2024-02-20 15:55:55.905 [info] > ~\AppData\Local\Microsoft\WindowsApps\python3.11.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 15:55:56.423 [info] Starting Pylance language server. 2024-02-20 15:55:59.102 [info] > ~\AppData\Local\Programs\Python\Python310\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 15:56:13.800 [info] > ~\AppData\Local\anaconda3\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 15:56:13.845 [info] > ~\AppData\Local\anaconda3\envs\condaenv\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 15:57:37.491 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 15:57:37.541 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 15:57:40.024 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 15:57:40.026 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:40.050 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:40.600 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 15:57:42.200 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 15:57:42.257 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 15:57:43.827 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:43.837 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:43.954 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:44.381 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:49.586 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:49.805 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:50.040 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:50.350 [debug] Testing: Trigger refresh after saving c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:50.586 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:50.588 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:50.607 [debug] Delay Trigger[Refresh Test Data]: triggered=1, called=1 2024-02-20 15:57:50.607 [info] Discover tests for workspace name: vscode - uri: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:50.624 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 15:57:50.639 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 15:57:50.642 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 15:57:50.647 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined 2024-02-20 15:57:50.651 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 15:57:51.079 [debug] Delay Trigger[Test Configuration Change]: triggered=1, called=1 2024-02-20 15:57:52.225 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:54.175 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:54.568 [debug] Delay Trigger[Test Configuration Change]: triggered=2, called=2 2024-02-20 15:57:55.973 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:57:57.171 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:57.173 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 15:57:57.193 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 15:57:57.196 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined 2024-02-20 15:57:57.199 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 15:57:57.202 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 15:57:57.206 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 15:57:59.702 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:58:00.160 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:58:00.630 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:58:00.782 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 15:58:02.282 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 15:58:02.335 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 16:00:08.474 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:08.476 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:00:08.635 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:10.945 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 16:00:11.001 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 16:00:13.030 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:13.031 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:00:13.146 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:19.659 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:19.722 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:19.877 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:20.063 [debug] Testing: Trigger refresh after saving c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:20.307 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:00:20.309 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:00:20.322 [debug] Delay Trigger[Refresh Test Data]: triggered=2, called=2 2024-02-20 16:00:20.322 [info] Discover tests for workspace name: vscode - uri: c:\Users\andreamah\GitHub\vscode\.vscode\settings.json 2024-02-20 16:00:20.345 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:00:20.349 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined 2024-02-20 16:00:20.351 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:00:20.355 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:00:20.358 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:00:20.825 [debug] Delay Trigger[Test Configuration Change]: triggered=3, called=3 2024-02-20 16:00:21.552 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 16:00:21.608 [debug] Clearing context for python dependencies not installed: undefined 2024-02-20 16:00:25.635 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:25.636 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:00:25.703 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:30.853 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:40.237 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:40.477 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:40.858 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:44.071 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:00:44.263 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:02:03.598 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:02:03.681 [debug] Extension ms-python.vscode-pylance accessed onDidChangeActiveEnvironmentPath with args: undefined 2024-02-20 16:02:03.685 [debug] Extension ms-python.vscode-pylance accessed onDidEnvironmentVariablesChange with args: undefined 2024-02-20 16:02:04.068 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:02:14.364 [info] Experiment 'pythonaacf' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonDiscoveryUsingWorkerscf' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonRecommendTensorboardExt' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonREPLSmartSend' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonSurveyNotification' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonTerminalEnvVarActivation' is active 2024-02-20 16:02:14.365 [info] Experiment 'pythonTestAdapter' is active 2024-02-20 16:02:14.365 [debug] Getting roots 2024-02-20 16:02:14.365 [debug] Getting roots 2024-02-20 16:02:14.365 [debug] Found roots 2024-02-20 16:02:14.365 [debug] Start watching file for changes C:\Users\andreamah\.conda\environments.txt 2024-02-20 16:02:14.365 [debug] Start watching: C:\Users\andreamah\.conda with pattern environments.txt using VSCode API 2024-02-20 16:02:14.365 [debug] Found roots 2024-02-20 16:02:14.365 [debug] Start watching root c:\Users\andreamah\GitHub\vscode for globs ["python.exe","*/python.exe","*/Scripts/python.exe"] 2024-02-20 16:02:14.365 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern python.exe using VSCode API 2024-02-20 16:02:14.365 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern */python.exe using VSCode API 2024-02-20 16:02:14.365 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern */Scripts/python.exe using VSCode API 2024-02-20 16:02:14.365 [info] Default formatter is set to ms-python.autopep8 for workspace c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:14.365 [debug] Waiting for test server to start... 2024-02-20 16:02:14.366 [info] Test server listening. 2024-02-20 16:02:14.366 [debug] Test server started. 2024-02-20 16:02:14.366 [debug] Testing: Setting up watcher for c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:14.368 [debug] Needed to validate C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe with latest info 2024-02-20 16:02:14.368 [info] Python interpreter path: ~\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:14.368 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:14.480 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\AppData\Roaming\Code - Insiders\User\settings.json 2024-02-20 16:02:14.658 [debug] Storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.658 [debug] Storage update failed for key autoSelectionInterpretersQueried-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.724 [debug] Storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.724 [debug] Storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.724 [debug] Storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.724 [debug] Storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.724 [debug] Storage update failed for key autoSelectionInterpretersQueried-c:\Users\andreamah\GitHub\vscode retrying by resetting first 2024-02-20 16:02:14.863 [warning] Retry failed, storage update failed for key autoSelectedWorkspacePythonInterpreter-c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:14.863 [warning] Retry failed, storage update failed for key autoSelectionInterpretersQueried-c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:14.877 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:15.409 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:15.417 [debug] Dump environment variables { "ALLUSERSPROFILE": "C:\\ProgramData", "APPDATA": "C:\\Users\\andreamah\\AppData\\Roaming", "CHROME_CRASHPAD_PIPE_NAME": "\\\\.\\pipe\\crashpad_33288_FQKVMMOLITWWIYCL", "COMPUTERNAME": "DESKTOP-956ATPJ", "EFC_12088": "0", "ELECTRON_RUN_AS_NODE": "1", "FPS_BROWSER_APP_PROFILE_STRING": "Internet Explorer", "FPS_BROWSER_USER_PROFILE_STRING": "Default", "GIT_LFS_PATH": "C:\\Program Files\\Git LFS", "HOMEDRIVE": "C:", "HOMEPATH": "\\Users\\andreamah", "LOCALAPPDATA": "C:\\Users\\andreamah\\AppData\\Local", "LOGONSERVER": "\\\\DESKTOP-956ATPJ", "NUMBER_OF_PROCESSORS": "8", "NVM_HOME": "C:\\Users\\andreamah\\AppData\\Roaming\\nvm", "NVM_SYMLINK": "C:\\Program Files\\nodejs", "OPENAI_API_KEY": "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", "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined", "OS": "Windows_NT", "PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC", "POSH_INSTALLER": "winget", "POSH_THEMES_PATH": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\themes", "PROCESSOR_ARCHITECTURE": "AMD64", "PROCESSOR_IDENTIFIER": "Intel64 Family 6 Model 140 Stepping 1, GenuineIntel", "PROCESSOR_LEVEL": "6", "PROCESSOR_REVISION": "8c01", "PUBLIC": "C:\\Users\\Public", "SESSIONNAME": "Console", "TEMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "TMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "UATDATA": "C:\\windows\\CCM\\UATData\\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77", "USERDNSDOMAIN": "redmond.corp.microsoft.com", "USERDOMAIN": "REDMOND", "USERDOMAIN_ROAMINGPROFILE": "REDMOND", "USERNAME": "andreamah", "USERPROFILE": "C:\\Users\\andreamah", "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess", "VSCODE_CODE_CACHE_PATH": "C:\\Users\\andreamah\\AppData\\Roaming\\Code - Insiders\\CachedData\\01ce8d869e4220577e194b2dd57bfa12437dfcf5", "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost", "VSCODE_CWD": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders", "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true", "VSCODE_IPC_HOOK": "\\\\.\\pipe\\087f3e47-1.87.0-insider-main-sock", "VSCODE_L10N_BUNDLE_LOCATION": "", "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-us\",\"availableLanguages\":{},\"_languagePackSupport\":true}", "VSCODE_PID": "33288", "__COMPAT_LAYER": "DetectorsAppHealth", "ChocolateyInstall": "C:\\ProgramData\\chocolatey", "ChocolateyLastPathUpdate": "132997026502554380", "ComSpec": "C:\\WINDOWS\\system32\\cmd.exe", "CommonProgramFiles": "C:\\Program Files\\Common Files", "CommonProgramFiles(x86)": "C:\\Program Files (x86)\\Common Files", "CommonProgramW6432": "C:\\Program Files\\Common Files", "DriverData": "C:\\Windows\\System32\\Drivers\\DriverData", "OneDrive": "C:\\Users\\andreamah\\OneDrive - Microsoft", "OneDriveCommercial": "C:\\Users\\andreamah\\OneDrive - Microsoft", "PSModulePath": "C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft Azure Information Protection\\Powershell", "ProgramData": "C:\\ProgramData", "ProgramFiles": "C:\\Program Files", "ProgramFiles(x86)": "C:\\Program Files (x86)", "ProgramW6432": "C:\\Program Files", "SystemDrive": "C:", "SystemRoot": "C:\\WINDOWS", "windir": "C:\\WINDOWS", "Path": "C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\windows\\system32;C:\\windows;C:\\windows\\System32\\Wbem;C:\\windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\windows\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\dotnet\\;C:\\Program Files\\Git LFS;C:\\Program Files\\GitHub CLI\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Microsoft VS Code\\bin;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\Microsoft VS Code Exploration\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\andreamah\\.cargo\\bin;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\npm;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.vscode-cli\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Users\\andreamah\\Documents\\vscode;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin" } 2024-02-20 16:02:15.442 [debug] [?25lWindows PowerShell Copyright (C) Microsoft Corporation. All rights reserved.Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows]0;C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe[?25h 2024-02-20 16:02:51.541 [info] Experiment 'pythonDiscoveryUsingWorkers' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonaacf' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonDiscoveryUsingWorkerscf' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonRecommendTensorboardExt' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonREPLSmartSend' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonSurveyNotification' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonTerminalEnvVarActivation' is active 2024-02-20 16:02:51.541 [info] Experiment 'pythonTestAdapter' is active 2024-02-20 16:02:51.541 [debug] Getting roots 2024-02-20 16:02:51.541 [debug] Getting roots 2024-02-20 16:02:51.541 [debug] Found roots 2024-02-20 16:02:51.541 [debug] Start watching file for changes C:\Users\andreamah\.conda\environments.txt 2024-02-20 16:02:51.541 [debug] Start watching: C:\Users\andreamah\.conda with pattern environments.txt using VSCode API 2024-02-20 16:02:51.541 [debug] Found roots 2024-02-20 16:02:51.541 [debug] Start watching root c:\Users\andreamah\GitHub\vscode for globs ["python.exe","*/python.exe","*/Scripts/python.exe"] 2024-02-20 16:02:51.541 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern python.exe using VSCode API 2024-02-20 16:02:51.541 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern */python.exe using VSCode API 2024-02-20 16:02:51.541 [debug] Start watching: c:\Users\andreamah\GitHub\vscode with pattern */Scripts/python.exe using VSCode API 2024-02-20 16:02:51.541 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.541 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.541 [info] Default formatter is set to ms-python.autopep8 for workspace c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:51.541 [debug] Waiting for test server to start... 2024-02-20 16:02:51.541 [debug] Searching for windows registry interpreters 2024-02-20 16:02:51.541 [debug] Worker id 5 for file registryKeys.worker.js with data {"arch":"x64","hive":"HKLM","key":"\\SOFTWARE\\Python"} 2024-02-20 16:02:51.541 [debug] Searching windows known paths locator 2024-02-20 16:02:51.541 [debug] Searching for pyenv environments 2024-02-20 16:02:51.541 [debug] Searching for conda. 2024-02-20 16:02:51.541 [debug] Searching for windows store envs 2024-02-20 16:02:51.541 [debug] Probing conda binary: conda 2024-02-20 16:02:51.542 [debug] Searching for custom workspace envs 2024-02-20 16:02:51.542 [debug] Finished searching for custom workspace envs 2024-02-20 16:02:51.542 [debug] No cached env found for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:51.542 [info] Test server listening. 2024-02-20 16:02:51.542 [debug] Test server started. 2024-02-20 16:02:51.542 [debug] Testing: Setting up watcher for c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:51.542 [debug] Finished searching windows known paths locator 2024-02-20 16:02:51.542 [debug] Finished searching for custom virtual envs 2024-02-20 16:02:51.542 [debug] Couldn't locate the state binary. 2024-02-20 16:02:51.542 [debug] Dump environment variables { "ALLUSERSPROFILE": "C:\\ProgramData", "APPDATA": "C:\\Users\\andreamah\\AppData\\Roaming", "APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL": "1", "CHROME_CRASHPAD_PIPE_NAME": "\\\\.\\pipe\\crashpad_33288_FQKVMMOLITWWIYCL", "COMPUTERNAME": "DESKTOP-956ATPJ", "EFC_12088": "0", "ELECTRON_RUN_AS_NODE": "1", "FPS_BROWSER_APP_PROFILE_STRING": "Internet Explorer", "FPS_BROWSER_USER_PROFILE_STRING": "Default", "GIT_LFS_PATH": "C:\\Program Files\\Git LFS", "HOMEDRIVE": "C:", "HOMEPATH": "\\Users\\andreamah", "LOCALAPPDATA": "C:\\Users\\andreamah\\AppData\\Local", "LOGONSERVER": "\\\\DESKTOP-956ATPJ", "NUMBER_OF_PROCESSORS": "8", "NVM_HOME": "C:\\Users\\andreamah\\AppData\\Roaming\\nvm", "NVM_SYMLINK": "C:\\Program Files\\nodejs", "OPENAI_API_KEY": "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", "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined", "OS": "Windows_NT", "PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC", "POSH_INSTALLER": "winget", "POSH_THEMES_PATH": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\themes", "PROCESSOR_ARCHITECTURE": "AMD64", "PROCESSOR_IDENTIFIER": "Intel64 Family 6 Model 140 Stepping 1, GenuineIntel", "PROCESSOR_LEVEL": "6", "PROCESSOR_REVISION": "8c01", "PUBLIC": "C:\\Users\\Public", "SESSIONNAME": "Console", "TEMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "TMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "UATDATA": "C:\\windows\\CCM\\UATData\\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77", "USERDNSDOMAIN": "redmond.corp.microsoft.com", "USERDOMAIN": "REDMOND", "USERDOMAIN_ROAMINGPROFILE": "REDMOND", "USERNAME": "andreamah", "USERPROFILE": "C:\\Users\\andreamah", "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess", "VSCODE_CODE_CACHE_PATH": "C:\\Users\\andreamah\\AppData\\Roaming\\Code - Insiders\\CachedData\\01ce8d869e4220577e194b2dd57bfa12437dfcf5", "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost", "VSCODE_CWD": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders", "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true", "VSCODE_IPC_HOOK": "\\\\.\\pipe\\087f3e47-1.87.0-insider-main-sock", "VSCODE_L10N_BUNDLE_LOCATION": "", "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-us\",\"availableLanguages\":{},\"_languagePackSupport\":true}", "VSCODE_PID": "33288", "__COMPAT_LAYER": "DetectorsAppHealth", "ChocolateyInstall": "C:\\ProgramData\\chocolatey", "ChocolateyLastPathUpdate": "132997026502554380", "ComSpec": "C:\\WINDOWS\\system32\\cmd.exe", "CommonProgramFiles": "C:\\Program Files\\Common Files", "CommonProgramFiles(x86)": "C:\\Program Files (x86)\\Common Files", "CommonProgramW6432": "C:\\Program Files\\Common Files", "DriverData": "C:\\Windows\\System32\\Drivers\\DriverData", "OneDrive": "C:\\Users\\andreamah\\OneDrive - Microsoft", "OneDriveCommercial": "C:\\Users\\andreamah\\OneDrive - Microsoft", "PSModulePath": "C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft Azure Information Protection\\Powershell", "ProgramData": "C:\\ProgramData", "ProgramFiles": "C:\\Program Files", "ProgramFiles(x86)": "C:\\Program Files (x86)", "ProgramW6432": "C:\\Program Files", "SystemDrive": "C:", "SystemRoot": "C:\\WINDOWS", "windir": "C:\\WINDOWS", "Path": "C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\windows\\system32;C:\\windows;C:\\windows\\System32\\Wbem;C:\\windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\windows\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\dotnet\\;C:\\Program Files\\Git LFS;C:\\Program Files\\GitHub CLI\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Microsoft VS Code\\bin;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\Microsoft VS Code Exploration\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\andreamah\\.cargo\\bin;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\npm;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.vscode-cli\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Users\\andreamah\\Documents\\vscode;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin" } 2024-02-20 16:02:51.543 [info] > conda info --json 2024-02-20 16:02:51.543 [debug] Worker id 6 for file plainExec.worker.js with data {"file":"conda","args":["info","--json"],"options":{"timeout":45000,"useWorker":true}} 2024-02-20 16:02:51.543 [debug] Searching for workspace virtual envs in: c:\Users\andreamah\GitHub\vscode 2024-02-20 16:02:51.543 [debug] Finished searching for poetry envs 2024-02-20 16:02:51.543 [debug] Finished searching for global virtual envs 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.898 [debug] Storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.909 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.936 [debug] No cached env found for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:51.945 [debug] [?25lWindows PowerShell Copyright (C) Microsoft Corporation. All rights reserved.Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows]0;C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe[?25h 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS 2024-02-20 16:02:51.946 [warning] Retry failed, storage update failed for key PYTHON_WORKSPACE_STORAGE_KEYS 2024-02-20 16:02:51.948 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:51.960 [debug] Extension ms-python.autopep8 accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:02:51.962 [debug] Extension ms-python.autopep8 accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:02:51.964 [debug] Extension ms-python.autopep8 accessed onDidChangeActiveEnvironmentPath with args: undefined 2024-02-20 16:02:51.966 [info] > ~\AppData\Local\Microsoft\WindowsApps\python3.11.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 16:02:51.966 [debug] Worker id 7 for file shellExec.worker.js with data {"command":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe -I c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\get_output_via_markers.py c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\interpreterInfo.py","options":{"timeout":15000,"useWorker":true}} 2024-02-20 16:02:51.966 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\MICROSOFT\WINDOWSAPPS\PYTHON3.11.EXE add 2024-02-20 16:02:51.967 [debug] Finished searching for windows store envs 2024-02-20 16:02:52.396 [debug] Finished searching for workspace virtual envs 2024-02-20 16:02:52.833 [debug] Found interpreter for >> C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe -I c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py <<: {"versionInfo":[3,11,8,"final",0],"sysPrefix":"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0","sysVersion":"3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]","is64Bit":true} 2024-02-20 16:02:52.834 [debug] Environment resolver resolved C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe for {"name":"","location":"","kind":"global-microsoft-store","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"","ctime":1707333469179,"mtime":1707333469178},"display":"Python 3.11.x 64-bit (Microsoft Store)","version":{"major":3,"minor":11,"micro":-1},"arch":3,"distro":{"org":"Microsoft"},"source":["path env var"],"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","detailedDisplayName":"Python 3.11.x 64-bit (Microsoft Store)"} to {"arch":3,"executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0","mtime":-1,"ctime":-1},"version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]"}} 2024-02-20 16:02:52.834 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\MICROSOFT\WINDOWSAPPS\PYTHON3.11.EXE update 2024-02-20 16:02:52.834 [debug] Environment resolver resolved C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe for {"name":"","location":"","kind":"global-microsoft-store","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"","ctime":1707333469179,"mtime":1707333469178},"display":"Python 3.11.x 64-bit (Microsoft Store)","version":{"major":3,"minor":11,"micro":-1},"arch":3,"distro":{"org":"Microsoft"},"source":["path env var"],"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","detailedDisplayName":"Python 3.11.x 64-bit (Microsoft Store)"} to {"arch":3,"executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0","mtime":-1,"ctime":-1},"version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]"}} 2024-02-20 16:02:52.834 [debug] Environment resolver resolved C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe for {"name":"","location":"","kind":"global-microsoft-store","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"","ctime":1707333469179,"mtime":1707333469178},"display":"Python 3.11.x 64-bit (Microsoft Store)","version":{"major":3,"minor":11,"micro":-1},"arch":3,"distro":{"org":"Microsoft"},"source":["path env var"],"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","detailedDisplayName":"Python 3.11.x 64-bit (Microsoft Store)"} to {"arch":3,"executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0","mtime":-1,"ctime":-1},"version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]"}} 2024-02-20 16:02:52.834 [debug] Resolved C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe using downstream locator 2024-02-20 16:02:52.834 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\MICROSOFT\WINDOWSAPPS\PYTHON3.11.EXE update 2024-02-20 16:02:52.834 [debug] Flushing env to cache C:\USERS\ANDREAMAH\APPDATA\LOCAL\MICROSOFT\WINDOWSAPPS\PYTHON3.11.EXE 2024-02-20 16:02:52.834 [debug] Resolved C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe using downstream locator 2024-02-20 16:02:52.834 [debug] Flushing env to cache C:\USERS\ANDREAMAH\APPDATA\LOCAL\MICROSOFT\WINDOWSAPPS\PYTHON3.11.EXE 2024-02-20 16:02:52.835 [info] Python interpreter path: ~\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:52.837 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:52.837 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:52.839 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:52.842 [debug] Worker id 7 exited with code 0 2024-02-20 16:02:52.981 [debug] Extension ms-python.autopep8 accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:02:52.983 [debug] Extension ms-python.autopep8 accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:02:52.986 [debug] Extension ms-python.autopep8 accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:02:52.988 [debug] Extension ms-python.autopep8 accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:02:54.882 [debug] Loading personal and system profiles took 2551ms. 2024-02-20 16:02:55.380 [debug] ➜ vscode ⚡( main) 18.17.1 7 hours ago  ▶ ]0; vscode ::  2024-02-20 16:02:55.411 [debug]  2024-02-20 16:02:58.255 [debug] Worker id 8 for file registryKeys.worker.js with data {"arch":"x64","hive":"HKCU","key":"\\SOFTWARE\\Python"} 2024-02-20 16:02:58.259 [error] Error in worker c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\out\client\registryKeys.worker.js TypeError [Error]: Cannot read properties of null (reading 'map') at c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\out\client\registryKeys.worker.js:1:7884 at ChildProcess. (c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\out\client\registryKeys.worker.js:1:3775) at ChildProcess.emit (node:events:514:28) at maybeClose (node:internal/child_process:1091:16) at Socket. (node:internal/child_process:449:11) at Socket.emit (node:events:514:28) at Pipe. (node:net:323:12) 2024-02-20 16:02:58.259 [debug] Worker id 5 exited with code 1 2024-02-20 16:02:58.263 [debug] Worker id 6 exited with code 0 2024-02-20 16:02:58.264 [debug] conda info --json: { "active_prefix": null, "active_prefix_name": null, "av_data_dir": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\etc\\conda", "av_metadata_url_base": null, "channels": [ "https://repo.anaconda.com/pkgs/main/win-64", "https://repo.anaconda.com/pkgs/main/noarch", "https://repo.anaconda.com/pkgs/r/win-64", "https://repo.anaconda.com/pkgs/r/noarch", "https://repo.anaconda.com/pkgs/msys2/win-64", "https://repo.anaconda.com/pkgs/msys2/noarch" ], "conda_build_version": "3.23.3", "conda_env_version": "23.1.0", "conda_location": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\lib\\site-packages\\conda", "conda_prefix": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "conda_shlvl": -1, "conda_version": "23.1.0", "config_files": [ "C:\\Users\\andreamah\\.condarc" ], "default_prefix": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "env_vars": { "CIO_TEST": "", "CONDA_ROOT": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "CURL_CA_BUNDLE": "", "GIT_LFS_PATH": "C:\\Program Files\\Git LFS", "HOMEPATH": "\\Users\\andreamah", "LD_PRELOAD": "", "PATH": "C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\windows\\system32;C:\\windows;C:\\windows\\System32\\Wbem;C:\\windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\windows\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\dotnet\\;C:\\Program Files\\Git LFS;C:\\Program Files\\GitHub CLI\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Microsoft VS Code\\bin;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\Microsoft VS Code Exploration\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\andreamah\\.cargo\\bin;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\npm;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.vscode-cli\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Users\\andreamah\\Documents\\vscode;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "POSH_THEMES_PATH": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\themes", "PSMODULEPATH": "C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft Azure Information Protection\\Powershell", "PYTHONIOENCODING": "utf-8", "PYTHONUNBUFFERED": "1", "REQUESTS_CA_BUNDLE": "", "SSL_CERT_FILE": "", "VSCODE_CODE_CACHE_PATH": "C:\\Users\\andreamah\\AppData\\Roaming\\Code - Insiders\\CachedData\\01ce8d869e4220577e194b2dd57bfa12437dfcf5" }, "envs": [ "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv" ], "envs_dirs": [ "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs", "C:\\Users\\andreamah\\.conda\\envs", "C:\\Users\\andreamah\\AppData\\Local\\conda\\conda\\envs" ], "is_windows_admin": false, "netrc_file": null, "offline": false, "pkgs_dirs": [ "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\pkgs", "C:\\Users\\andreamah\\.conda\\pkgs", "C:\\Users\\andreamah\\AppData\\Local\\conda\\conda\\pkgs" ], "platform": "win-64", "python_version": "3.10.9.final.0", "rc_path": "C:\\Users\\andreamah\\.condarc", "requests_version": "2.28.1", "root_prefix": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "root_writable": true, "site_dirs": [ "C:\\Users\\andreamah\\AppData\\Roaming\\Python\\etc", "C:\\Users\\andreamah\\AppData\\Roaming\\Python\\Python310", "C:\\Users\\andreamah\\AppData\\Roaming\\Python\\share" ], "sys.executable": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\python.exe", "sys.prefix": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3", "sys.version": "3.10.9 | packaged by Anaconda, Inc. | (main, Mar 1 2023, 18:18:15) [MSC v.1916 64 bit (AMD64)]", "sys_rc_path": "C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\.condarc", "user_agent": "conda/23.1.0 requests/2.28.1 CPython/3.10.9 Windows/10 Windows/10.0.22621", "user_rc_path": "C:\\Users\\andreamah\\.condarc", "virtual_pkgs": [ [ "__archspec", "1", "x86_64" ], [ "__cuda", "11.6", "0" ], [ "__win", "0", "0" ] ] } 2024-02-20 16:02:58.264 [debug] Found conda via filesystem probing: conda 2024-02-20 16:02:58.264 [debug] Searching for conda environments using conda 2024-02-20 16:02:58.265 [debug] Looking into conda env for executable: {"prefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3","name":"base"} 2024-02-20 16:02:58.265 [debug] Found executable within conda env {"prefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3","name":"base"} 2024-02-20 16:02:58.265 [debug] Found conda executable: C:\Users\andreamah\AppData\Local\anaconda3\python.exe 2024-02-20 16:02:58.265 [debug] Looking into conda env for executable: {"prefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv","name":"condaenv"} 2024-02-20 16:02:58.265 [debug] Found executable within conda env {"prefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv","name":"condaenv"} 2024-02-20 16:02:58.266 [debug] Found conda executable: C:\Users\andreamah\AppData\Local\anaconda3\envs\condaenv\python.exe 2024-02-20 16:02:58.268 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\ANACONDA3\PYTHON.EXE add 2024-02-20 16:02:58.269 [debug] Finished searching for conda environments 2024-02-20 16:02:58.269 [info] > ~\AppData\Local\anaconda3\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 16:02:58.269 [debug] Worker id 9 for file shellExec.worker.js with data {"command":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\python.exe -I c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\get_output_via_markers.py c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\interpreterInfo.py","options":{"timeout":15000,"useWorker":true}} 2024-02-20 16:02:58.274 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\ANACONDA3\ENVS\CONDAENV\PYTHON.EXE add 2024-02-20 16:02:58.275 [info] > ~\AppData\Local\anaconda3\envs\condaenv\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 16:02:58.275 [debug] Worker id 10 for file shellExec.worker.js with data {"command":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv\\python.exe -I c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\get_output_via_markers.py c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\interpreterInfo.py","options":{"timeout":15000,"useWorker":true}} 2024-02-20 16:02:58.275 [debug] Finished with environment reducer 2024-02-20 16:02:58.387 [debug] Worker id 11 for file registryKeys.worker.js with data {"arch":"x64","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore"} 2024-02-20 16:02:58.388 [debug] Worker id 8 exited with code 0 2024-02-20 16:02:58.504 [debug] Worker id 12 for file registryValues.worker.js with data {"arch":"x64","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10"} 2024-02-20 16:02:58.505 [debug] Worker id 11 exited with code 0 2024-02-20 16:02:58.559 [debug] Found interpreter for >> C:\Users\andreamah\AppData\Local\anaconda3\envs\condaenv\python.exe -I c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py <<: {"versionInfo":[3,11,0,"final",0],"sysPrefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv","sysVersion":"3.11.0 | packaged by conda-forge | (main, Oct 25 2022, 06:12:32) [MSC v.1929 64 bit (AMD64)]","is64Bit":true} 2024-02-20 16:02:58.560 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\ANACONDA3\ENVS\CONDAENV\PYTHON.EXE update 2024-02-20 16:02:58.561 [debug] Worker id 10 exited with code 0 2024-02-20 16:02:58.578 [debug] Found interpreter for >> C:\Users\andreamah\AppData\Local\anaconda3\python.exe -I c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py <<: {"versionInfo":[3,10,9,"final",0],"sysPrefix":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3","sysVersion":"3.10.9 | packaged by Anaconda, Inc. | (main, Mar 1 2023, 18:18:15) [MSC v.1916 64 bit (AMD64)]","is64Bit":true} 2024-02-20 16:02:58.578 [debug] Finished with environment resolver 2024-02-20 16:02:58.578 [debug] Worker id 9 exited with code 0 2024-02-20 16:02:58.579 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\ANACONDA3\ENVS\CONDAENV\PYTHON.EXE update 2024-02-20 16:02:58.579 [debug] Environments added to cache [{"name":"","location":"","kind":"global-microsoft-store","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe","sysPrefix":"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0","ctime":1707333469179,"mtime":1707333469178},"display":"Python 3.11.8 64-bit (Microsoft Store)","version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]"},"arch":3,"distro":{"org":"Microsoft"},"source":["path env var"],"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","detailedDisplayName":"Python 3.11.8 64-bit (Microsoft Store)"},{"name":"condaenv","location":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv","kind":"virt-conda","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv\\python.exe","sysPrefix":"","ctime":1708117993988,"mtime":1666678513000},"display":"Python 3.11.0 ('condaenv')","version":{"major":3,"minor":11,"micro":0},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\ANACONDA3\\ENVS\\CONDAENV\\PYTHON.EXE","detailedDisplayName":"Python 3.11.0 ('condaenv': conda)"},{"name":"condaenv","location":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv","kind":"virt-conda","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\envs\\condaenv\\python.exe","sysPrefix":"","ctime":1708117993988,"mtime":1666678513000},"display":"Python 3.11.0 ('condaenv')","version":{"major":3,"minor":11,"micro":0},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\ANACONDA3\\ENVS\\CONDAENV\\PYTHON.EXE","detailedDisplayName":"Python 3.11.0 ('condaenv': conda)"}] 2024-02-20 16:02:58.609 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:58.609 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:58.656 [debug] Worker id 12 exited with code 0 2024-02-20 16:02:58.657 [debug] Worker id 13 for file registryKeys.worker.js with data {"arch":"x64","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10"} 2024-02-20 16:02:58.658 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:58.658 [debug] Storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS retrying by resetting first 2024-02-20 16:02:58.664 [debug] Dump environment variables { "ALLUSERSPROFILE": "C:\\ProgramData", "APPDATA": "C:\\Users\\andreamah\\AppData\\Roaming", "APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL": "1", "CHROME_CRASHPAD_PIPE_NAME": "\\\\.\\pipe\\crashpad_33288_FQKVMMOLITWWIYCL", "COMPUTERNAME": "DESKTOP-956ATPJ", "EFC_12088": "0", "ELECTRON_RUN_AS_NODE": "1", "FPS_BROWSER_APP_PROFILE_STRING": "Internet Explorer", "FPS_BROWSER_USER_PROFILE_STRING": "Default", "GIT_LFS_PATH": "C:\\Program Files\\Git LFS", "HOMEDRIVE": "C:", "HOMEPATH": "\\Users\\andreamah", "LOCALAPPDATA": "C:\\Users\\andreamah\\AppData\\Local", "LOGONSERVER": "\\\\DESKTOP-956ATPJ", "NUMBER_OF_PROCESSORS": "8", "NVM_HOME": "C:\\Users\\andreamah\\AppData\\Roaming\\nvm", "NVM_SYMLINK": "C:\\Program Files\\nodejs", "OPENAI_API_KEY": "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", "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined", "OS": "Windows_NT", "PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC", "POSH_INSTALLER": "winget", "POSH_THEMES_PATH": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\themes", "PROCESSOR_ARCHITECTURE": "AMD64", "PROCESSOR_IDENTIFIER": "Intel64 Family 6 Model 140 Stepping 1, GenuineIntel", "PROCESSOR_LEVEL": "6", "PROCESSOR_REVISION": "8c01", "PUBLIC": "C:\\Users\\Public", "SESSIONNAME": "Console", "TEMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "TMP": "C:\\Users\\ANDREA~1\\AppData\\Local\\Temp", "UATDATA": "C:\\windows\\CCM\\UATData\\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77", "USERDNSDOMAIN": "redmond.corp.microsoft.com", "USERDOMAIN": "REDMOND", "USERDOMAIN_ROAMINGPROFILE": "REDMOND", "USERNAME": "andreamah", "USERPROFILE": "C:\\Users\\andreamah", "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess", "VSCODE_CODE_CACHE_PATH": "C:\\Users\\andreamah\\AppData\\Roaming\\Code - Insiders\\CachedData\\01ce8d869e4220577e194b2dd57bfa12437dfcf5", "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost", "VSCODE_CWD": "C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders", "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true", "VSCODE_IPC_HOOK": "\\\\.\\pipe\\087f3e47-1.87.0-insider-main-sock", "VSCODE_L10N_BUNDLE_LOCATION": "", "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-us\",\"availableLanguages\":{},\"_languagePackSupport\":true}", "VSCODE_PID": "33288", "__COMPAT_LAYER": "DetectorsAppHealth", "ChocolateyInstall": "C:\\ProgramData\\chocolatey", "ChocolateyLastPathUpdate": "132997026502554380", "ComSpec": "C:\\WINDOWS\\system32\\cmd.exe", "CommonProgramFiles": "C:\\Program Files\\Common Files", "CommonProgramFiles(x86)": "C:\\Program Files (x86)\\Common Files", "CommonProgramW6432": "C:\\Program Files\\Common Files", "DriverData": "C:\\Windows\\System32\\Drivers\\DriverData", "OneDrive": "C:\\Users\\andreamah\\OneDrive - Microsoft", "OneDriveCommercial": "C:\\Users\\andreamah\\OneDrive - Microsoft", "PSModulePath": "C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft Azure Information Protection\\Powershell", "ProgramData": "C:\\ProgramData", "ProgramFiles": "C:\\Program Files", "ProgramFiles(x86)": "C:\\Program Files (x86)", "ProgramW6432": "C:\\Program Files", "SystemDrive": "C:", "SystemRoot": "C:\\WINDOWS", "windir": "C:\\WINDOWS", "Path": "C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\windows\\system32;C:\\windows;C:\\windows\\System32\\Wbem;C:\\windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\windows\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\dotnet\\;C:\\Program Files\\Git LFS;C:\\Program Files\\GitHub CLI\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Microsoft VS Code\\bin;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\Microsoft VS Code Exploration\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\andreamah\\.cargo\\bin;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\andreamah\\AppData\\Roaming\\npm;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.vscode-cli\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\andreamah\\.vscode-server-launcher\\bin;C:\\Users\\andreamah\\.dotnet\\tools;C:\\Users\\andreamah\\AppData\\Roaming\\nvm;C:\\Program Files\\nodejs;C:\\Users\\andreamah\\AppData\\Local\\Programs\\oh-my-posh\\bin;C:\\Users\\andreamah\\AppData\\Local\\anaconda3\\Scripts;C:\\Users\\andreamah\\Documents\\vscode;C:\\Users\\andreamah\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin" } 2024-02-20 16:02:58.686 [debug] Extension ms-python.vscode-pylance accessed onDidChangeActiveEnvironmentPath with args: undefined 2024-02-20 16:02:58.689 [debug] Extension ms-python.vscode-pylance accessed onDidEnvironmentVariablesChange with args: undefined 2024-02-20 16:02:58.690 [warning] Retry failed, storage update failed for key PYTHON_GLOBAL_STORAGE_KEYS 2024-02-20 16:02:58.720 [debug] Activation Commands received undefined for shell C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe, resource c:\Users\andreamah\GitHub\vscode and interpreter C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:58.723 [debug] Activated environment variables for c:\Users\andreamah\GitHub\vscode undefined 2024-02-20 16:02:58.723 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:58.794 [debug] Worker id 14 for file registryValues.worker.js with data {"arch":"x64","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10\\InstallPath"} 2024-02-20 16:02:58.798 [debug] Activation Commands received undefined for shell cmd, resource c:\Users\andreamah\GitHub\vscode and interpreter C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:58.800 [debug] Activated environment variables for c:\Users\andreamah\GitHub\vscode undefined 2024-02-20 16:02:58.801 [debug] Worker id 13 exited with code 0 2024-02-20 16:02:58.906 [debug] Worker id 15 for file registryKeys.worker.js with data {"arch":"x86","hive":"HKLM","key":"\\SOFTWARE\\Python"} 2024-02-20 16:02:58.906 [debug] Worker id 14 exited with code 0 2024-02-20 16:02:58.990 [debug] Worker id 16 for file registryKeys.worker.js with data {"arch":"x86","hive":"HKLM","key":"\\SOFTWARE\\Python\\PyLauncher"} 2024-02-20 16:02:58.991 [debug] Worker id 15 exited with code 0 2024-02-20 16:02:59.081 [debug] Worker id 17 for file registryKeys.worker.js with data {"arch":"x86","hive":"HKCU","key":"\\SOFTWARE\\Python"} 2024-02-20 16:02:59.086 [debug] Worker id 16 exited with code 0 2024-02-20 16:02:59.204 [debug] Worker id 17 exited with code 0 2024-02-20 16:02:59.205 [debug] Worker id 18 for file registryKeys.worker.js with data {"arch":"x86","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore"} 2024-02-20 16:02:59.317 [debug] Worker id 19 for file registryValues.worker.js with data {"arch":"x86","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10"} 2024-02-20 16:02:59.318 [debug] Worker id 18 exited with code 0 2024-02-20 16:02:59.413 [debug] Worker id 20 for file registryKeys.worker.js with data {"arch":"x86","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10"} 2024-02-20 16:02:59.414 [debug] Worker id 19 exited with code 0 2024-02-20 16:02:59.499 [debug] Worker id 21 for file registryValues.worker.js with data {"arch":"x86","hive":"HKCU","key":"\\SOFTWARE\\Python\\PythonCore\\3.10\\InstallPath"} 2024-02-20 16:02:59.501 [debug] Worker id 20 exited with code 0 2024-02-20 16:02:59.590 [debug] Finished with environment reducer 2024-02-20 16:02:59.590 [debug] Finished searching for windows registry interpreters 2024-02-20 16:02:59.591 [debug] Worker id 21 exited with code 0 2024-02-20 16:02:59.597 [info] > ~\AppData\Local\Programs\Python\Python310\python.exe -I ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py ~\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py 2024-02-20 16:02:59.597 [debug] Worker id 22 for file shellExec.worker.js with data {"command":"C:\\Users\\andreamah\\AppData\\Local\\Programs\\Python\\Python310\\python.exe -I c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\get_output_via_markers.py c:\\Users\\andreamah\\.vscode-insiders\\extensions\\ms-python.python-2024.1.10511008\\pythonFiles\\interpreterInfo.py","options":{"timeout":15000,"useWorker":true}} 2024-02-20 16:02:59.802 [debug] Found interpreter for >> C:\Users\andreamah\AppData\Local\Programs\Python\Python310\python.exe -I c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\get_output_via_markers.py c:\Users\andreamah\.vscode-insiders\extensions\ms-python.python-2024.1.10511008\pythonFiles\interpreterInfo.py <<: {"versionInfo":[3,10,11,"final",0],"sysPrefix":"C:\\Users\\andreamah\\AppData\\Local\\Programs\\Python\\Python310","sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]","is64Bit":true} 2024-02-20 16:02:59.802 [debug] Environment resolver resolved C:\Users\andreamah\AppData\Local\Programs\Python\Python310\python.exe for {"name":"","location":"","kind":"unknown","executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Programs\\Python\\Python310\\python.exe","sysPrefix":"","ctime":1708473359399,"mtime":1680680874000},"display":"Python","version":{"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}},"arch":1,"distro":{"org":""},"source":[],"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\PROGRAMS\\PYTHON\\PYTHON310\\PYTHON.EXE","detailedDisplayName":"Python"} to {"arch":3,"executable":{"filename":"C:\\Users\\andreamah\\AppData\\Local\\Programs\\Python\\Python310\\python.exe","sysPrefix":"C:\\Users\\andreamah\\AppData\\Local\\Programs\\Python\\Python310","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":11,"release":{"level":"final","serial":0},"sysVersion":"3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit (AMD64)]"}} 2024-02-20 16:02:59.803 [debug] Python API env change detected C:\USERS\ANDREAMAH\APPDATA\LOCAL\PROGRAMS\PYTHON\PYTHON310\PYTHON.EXE add 2024-02-20 16:02:59.803 [debug] Finished with environment resolver 2024-02-20 16:02:59.803 [debug] Worker id 22 exited with code 0 2024-02-20 16:02:59.909 [info] Starting Pylance language server. 2024-02-20 16:02:59.910 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:59.911 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:59.914 [debug] Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell' 2024-02-20 16:02:59.914 [debug] Shell identified as powershell 2024-02-20 16:02:59.915 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:59.933 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:59.937 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:02:59.958 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:02:59.962 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined 2024-02-20 16:02:59.968 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:02:59.972 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined 2024-02-20 16:02:59.975 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"C:\\USERS\\ANDREAMAH\\APPDATA\\LOCAL\\MICROSOFT\\WINDOWSAPPS\\PYTHON3.11.EXE","path":"C:\\Users\\andreamah\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"} 2024-02-20 16:03:03.013 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\extensions\vscode-colorize-tests\test\colorize-fixtures\test.py 2024-02-20 16:03:08.270 [debug] Clearing context for python dependencies not installed: ms-python.python.Python 2024-02-20 16:03:08.270 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:03:08.307 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:03:30.015 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:05:19.668 [debug] Clearing context for python dependencies not installed: c:\Users\andreamah\GitHub\vscode\extensions\vscode-colorize-tests\test\colorize-fixtures\test.py 2024-02-20 16:05:19.669 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe 2024-02-20 16:05:27.759 [debug] Clearing context for python dependencies not installed: ms-python.python.Python 2024-02-20 16:05:27.760 [debug] Found cached env for C:\Users\andreamah\AppData\Local\Microsoft\WindowsApps\python3.11.exe ```
DonJayamanne commented 7 months ago

@karrtikr I think, the verification steps should indicate the fact that this needs to be tested on Windows with Conda. as this is a fix primarily for Windows users.

andreamah commented 7 months ago

Coincidentally, I was on windows with conda installed with the above issue

aiday-mar commented 7 months ago

Hi @karrtikr I am pinging about the milestone on this issue. We have branched off to the release branch recently. Would you like to make this issue a candidate or move it to the March 2024 milestone?

karrtikr commented 7 months ago

Hi I haven't gotten to it yet, hence moved it to March thanks.

karrtikr commented 6 months ago

@andreamah I've prepared a fix which very likely fixes the issue, please give it a try when you can: https://github.com/microsoft/vscode-python/actions/runs/8045205090/artifacts/1274325464. You can use Extension: Install from VSIX command to install it.

Make sure run Python: Clear cache and reload window command.

karrtikr commented 6 months ago

@andreamah Fix should be out in the pre-release version of the extension.

karrtikr commented 6 months ago

Verification steps: https://github.com/microsoft/vscode-python/issues/22146#issuecomment-1953653626

Tyriar commented 5 months ago

This failed verification for me, the output shows the worker option is active, but there's an exception launching conda (which I don't think is installed) and there's no "worker id":

2024-03-25 12:03:15.411 [info] Experiment 'pythonRecommendTensorboardExt' is active
2024-03-25 12:03:15.411 [info] Experiment 'pythonREPLSmartSend' is active
2024-03-25 12:03:15.411 [info] Experiment 'pythonTerminalEnvVarActivation' is active
2024-03-25 12:03:15.411 [info] Experiment 'pythonTestAdapter' is active
2024-03-25 12:03:15.411 [info] Default formatter is set to null for workspace /Users/tyriar/playground/hatch
2024-03-25 12:03:15.411 [info] Test server listening.
2024-03-25 12:03:15.411 [info] Python interpreter path: ~/Library/Application Support/hatch/env/virtual/testproj/7Y1g8kEb/testproj/bin/python
2024-03-25 12:03:16.023 [info] > . "~/Library/Application Support/hatch/env/virtual/testproj/7Y1g8kEb/testproj/bin/activate" && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/printEnvVariables.py
2024-03-25 12:03:16.023 [info] shell: bash
2024-03-25 12:03:16.129 [info] > /opt/homebrew/bin/python3.10 ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/printEnvVariables.py
2024-03-25 12:03:16.129 [info] shell: bash
2024-03-25 12:03:16.423 [info] Setting environment variable VIRTUAL_ENV in collection to /Users/tyriar/Library/Application Support/hatch/env/virtual/testproj/7Y1g8kEb/testproj {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-03-25 12:03:16.423 [info] Prepending environment variable PATH in collection with /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/deactivate/bash:/Users/tyriar/Library/Application Support/hatch/env/virtual/testproj/7Y1g8kEb/testproj/bin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-03-25 12:03:16.423 [info] Prepending environment variable PS1 in collection with (testproj)  {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2024-03-25 12:03:16.423 [info] Setting environment variable XPC_SERVICE_NAME in collection to 0 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-03-25 12:03:16.423 [info] Setting environment variable VIRTUAL_ENV_PROMPT in collection to testproj {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-03-25 12:03:16.424 [info] Send text to terminal: /opt/homebrew/bin/python3.10 /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/printEnvVariablesToFile.py /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/deactivate/bash/envVars.txt
2024-03-25 12:03:17.139 [info] Starting Pylance language server.
2024-03-25 12:03:26.163 [info] Discover tests for workspace name: undefined - uri: /Users/tyriar/Library/Application Support/Code - Insiders/User/settings.json
2024-03-25 12:04:12.023 [info] Experiment 'pythonDiscoveryUsingWorkers' is active
2024-03-25 12:04:12.023 [info] Experiment 'pythonRecommendTensorboardExt' is active
2024-03-25 12:04:12.023 [info] Experiment 'pythonREPLSmartSend' is active
2024-03-25 12:04:12.023 [info] Experiment 'pythonTerminalEnvVarActivation' is active
2024-03-25 12:04:12.023 [info] Experiment 'pythonTestAdapter' is active
2024-03-25 12:04:12.023 [debug] Start watching file for changes /Users/tyriar/.conda/environments.txt
2024-03-25 12:04:12.023 [debug] Start watching: /Users/tyriar/.conda with pattern environments.txt using VSCode API
2024-03-25 12:04:12.023 [debug] Start watching root /Users/tyriar/playground/hatch for globs ["python","*/python","*/bin/python"]
2024-03-25 12:04:12.023 [debug] Start watching: /Users/tyriar/playground/hatch with pattern python using VSCode API
2024-03-25 12:04:12.023 [debug] Start watching: /Users/tyriar/playground/hatch with pattern */python using VSCode API
2024-03-25 12:04:12.023 [debug] Start watching: /Users/tyriar/playground/hatch with pattern */bin/python using VSCode API
2024-03-25 12:04:12.023 [info] Default formatter is set to null for workspace /Users/tyriar/playground/hatch
2024-03-25 12:04:12.023 [debug] Waiting for test server to start...
2024-03-25 12:04:12.023 [debug] Searching for interpreters in posix paths locator
2024-03-25 12:04:12.023 [debug] Searching for pyenv environments
2024-03-25 12:04:12.023 [debug] Searching for conda.
2024-03-25 12:04:12.023 [debug] Probing conda binary: conda
2024-03-25 12:04:12.023 [debug] Searching for custom workspace envs
2024-03-25 12:04:12.023 [debug] Probing Hatch binary hatch
2024-03-25 12:04:12.023 [info] Test server listening.
2024-03-25 12:04:12.023 [debug] Test server started.
2024-03-25 12:04:12.023 [debug] Testing: Setting up watcher for /Users/tyriar/playground/hatch
2024-03-25 12:04:12.023 [debug] Finished searching for custom virtual envs
2024-03-25 12:04:12.023 [debug] Couldn't locate the state binary.
2024-03-25 12:04:12.023 [debug] Dump environment variables {
    "COMMAND_MODE": "unix2003",
    "HOME": "/Users/tyriar",
    "HOMEBREW_CELLAR": "/opt/homebrew/Cellar",
    "HOMEBREW_PREFIX": "/opt/homebrew",
    "HOMEBREW_REPOSITORY": "/opt/homebrew",
    "INFOPATH": "/opt/homebrew/share/info:",
    "LESS": "-R",
    "LOGNAME": "tyriar",
    "LSCOLORS": "Gxfxcxdxbxegedabagacad",
    "LS_COLORS": "di=1;36:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43",
    "MANPATH": "/opt/homebrew/share/man::",
    "MallocNanoZone": "0",
    "OLDPWD": "/",
    "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined",
    "PAGER": "less",
    "PWD": "/",
    "SHELL": "/bin/zsh",
    "SHLVL": "0",
    "SSH_AUTH_SOCK": "/private/tmp/com.apple.launchd.1Yc7IXFDGh/Listeners",
    "TMPDIR": "/var/folders/nk/960h1fp91k3gpt8_70qg5j0h0000gn/T/",
    "USER": "tyriar",
    "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess",
    "VSCODE_CODE_CACHE_PATH": "/Users/tyriar/Library/Application Support/Code - Insiders/CachedData/b0d975fc6370f15570c380f41015b1ca2cdcb791",
    "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost",
    "VSCODE_CWD": "/",
    "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true",
    "VSCODE_IPC_HOOK": "/Users/tyriar/Library/Application Support/Code - Insiders/1.88-main.sock",
    "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-au\",\"availableLanguages\":{},\"_languagePackSupport\":true}",
    "VSCODE_PID": "15475",
    "XPC_FLAGS": "0x0",
    "XPC_SERVICE_NAME": "application.com.microsoft.VSCodeInsiders.13688824.13688831",
    "ZSH": "/Users/tyriar/.oh-my-zsh",
    "_": "/Applications/Visual Studio Code - Insiders.app/Contents/MacOS/Electron",
    "__CFBundleIdentifier": "com.microsoft.VSCodeInsiders",
    "__CF_USER_TEXT_ENCODING": "0x1F5:0x0:0xF",
    "ELECTRON_RUN_AS_NODE": "1",
    "VSCODE_L10N_BUNDLE_LOCATION": "",
    "PATH": "/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin"
}
2024-03-25 12:04:12.023 [info] > conda info --json
2024-03-25 12:04:12.023 [debug] Failed to spawn conda binary conda [Error: spawn conda ENOENT
    at ChildProcess._handle.onexit (node:internal/child_process:284:19)
    at onErrorNT (node:internal/child_process:477:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)] {
  errno: -2,
  code: 'ENOENT',
  syscall: 'spawn conda',
  path: 'conda',
  spawnargs: [ 'info', '--json' ]
}
2024-03-25 12:04:12.023 [debug] Searching for workspace virtual envs in: /Users/tyriar/playground/hatch
2024-03-25 12:04:12.023 [debug] Dump environment variables {
    "COMMAND_MODE": "unix2003",
    "HOME": "/Users/tyriar",
    "HOMEBREW_CELLAR": "/opt/homebrew/Cellar",
    "HOMEBREW_PREFIX": "/opt/homebrew",
    "HOMEBREW_REPOSITORY": "/opt/homebrew",
    "INFOPATH": "/opt/homebrew/share/info:",
    "LESS": "-R",
    "LOGNAME": "tyriar",
    "LSCOLORS": "Gxfxcxdxbxegedabagacad",
    "LS_COLORS": "di=1;36:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43",
    "MANPATH": "/opt/homebrew/share/man::",
    "MallocNanoZone": "0",
    "OLDPWD": "/",
    "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined",
    "PAGER": "less",
    "PWD": "/",
    "SHELL": "/bin/zsh",
    "SHLVL": "0",
    "SSH_AUTH_SOCK": "/private/tmp/com.apple.launchd.1Yc7IXFDGh/Listeners",
    "TMPDIR": "/var/folders/nk/960h1fp91k3gpt8_70qg5j0h0000gn/T/",
    "USER": "tyriar",
    "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess",
    "VSCODE_CODE_CACHE_PATH": "/Users/tyriar/Library/Application Support/Code - Insiders/CachedData/b0d975fc6370f15570c380f41015b1ca2cdcb791",
    "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost",
    "VSCODE_CWD": "/",
    "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true",
    "VSCODE_IPC_HOOK": "/Users/tyriar/Library/Application Support/Code - Insiders/1.88-main.sock",
    "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-au\",\"availableLanguages\":{},\"_languagePackSupport\":true}",
    "VSCODE_PID": "15475",
    "XPC_FLAGS": "0x0",
    "XPC_SERVICE_NAME": "application.com.microsoft.VSCodeInsiders.13688824.13688831",
    "ZSH": "/Users/tyriar/.oh-my-zsh",
    "_": "/Applications/Visual Studio Code - Insiders.app/Contents/MacOS/Electron",
    "__CFBundleIdentifier": "com.microsoft.VSCodeInsiders",
    "__CF_USER_TEXT_ENCODING": "0x1F5:0x0:0xF",
    "ELECTRON_RUN_AS_NODE": "1",
    "VSCODE_L10N_BUNDLE_LOCATION": "",
    "PATH": "/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin"
}
2024-03-25 12:04:12.023 [info] > hatch env show --json
2024-03-25 12:04:12.023 [info] cwd: .
2024-03-25 12:04:12.023 [debug] [Error: spawn hatch ENOENT
    at ChildProcess._handle.onexit (node:internal/child_process:284:19)
    at onErrorNT (node:internal/child_process:477:16)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)] {
  errno: -2,
  code: 'ENOENT',
  syscall: 'spawn hatch',
  path: 'hatch',
  spawnargs: [ 'env', 'show', '--json' ]
}
2024-03-25 12:04:12.023 [debug] Failed to find Hatch binary hatch
2024-03-25 12:04:12.023 [debug] No Hatch binary found
2024-03-25 12:04:12.023 [debug] Finished searching for Hatch envs
2024-03-25 12:04:12.026 [debug] Finished searching for global virtual envs
2024-03-25 12:04:12.026 [debug] Finished searching for workspace virtual envs
2024-03-25 12:04:12.033 [debug] Finished searching for poetry envs
2024-03-25 12:04:12.041 [debug] Attempting to resolve symbolic link: /usr/bin/python3
2024-03-25 12:04:12.042 [info] Found: /usr/bin/python3 --> /usr/bin/python3
2024-03-25 12:04:12.045 [debug] Couldn't locate the conda binary.
2024-03-25 12:04:12.045 [debug] Couldn't locate the conda binary.
2024-03-25 12:04:12.056 [debug] Attempting to resolve symbolic link: /usr/local/bin/python3
2024-03-25 12:04:12.056 [info] Found: /usr/local/bin/python3 --> /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12
2024-03-25 12:04:12.056 [debug] Attempting to resolve symbolic link: /usr/local/bin/python3.12
2024-03-25 12:04:12.057 [info] Found: /usr/local/bin/python3.12 --> /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12
2024-03-25 12:04:12.087 [debug] Attempting to resolve symbolic link: /Library/Frameworks/Python.framework/Versions/3.12/bin/python3
2024-03-25 12:04:12.087 [info] Found: /Library/Frameworks/Python.framework/Versions/3.12/bin/python3 --> /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12
2024-03-25 12:04:12.087 [debug] Attempting to resolve symbolic link: /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12
2024-03-25 12:04:12.087 [info] Found: /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12 --> /Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12
2024-03-25 12:04:12.087 [debug] Attempting to resolve symbolic link: /opt/homebrew/bin/python3.10
2024-03-25 12:04:12.088 [info] Found: /opt/homebrew/bin/python3.10 --> /opt/homebrew/Cellar/python@3.10/3.10.14/Frameworks/Python.framework/Versions/3.10/bin/python3.10
2024-03-25 12:04:12.088 [debug] Attempting to resolve symbolic link: /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.088 [info] Found: /opt/homebrew/bin/python3.11 --> /opt/homebrew/Cellar/python@3.11/3.11.8/Frameworks/Python.framework/Versions/3.11/bin/python3.11
2024-03-25 12:04:12.090 [debug] Found 4 python binaries in posix paths
2024-03-25 12:04:12.111 [debug] Python API env change detected /usr/bin/python3 add
2024-03-25 12:04:12.111 [info] > /usr/bin/python3 -I ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py
2024-03-25 12:04:12.113 [debug] Python API env change detected /usr/local/bin/python3 add
2024-03-25 12:04:12.113 [info] > /usr/local/bin/python3 -I ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py
2024-03-25 12:04:12.115 [debug] Python API env change detected /opt/homebrew/bin/python3.10 add
2024-03-25 12:04:12.115 [debug] Finished searching for interpreters in posix paths locator
2024-03-25 12:04:12.116 [debug] Python API env change detected /opt/homebrew/bin/python3.11 add
2024-03-25 12:04:12.116 [debug] Finished with environment reducer
2024-03-25 12:04:12.116 [debug] No cached env found for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.116 [debug] No cached env found for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.319 [debug] Received shell integration sequence for bash
2024-03-25 12:04:12.325 [debug] Found interpreter for >> /usr/local/bin/python3 -I /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py <<: {"versionInfo":[3,12,0,"final",0],"sysPrefix":"/Library/Frameworks/Python.framework/Versions/3.12","sysVersion":"3.12.0 (v3.12.0:0fb18b02c8, Oct  2 2023, 09:45:56) [Clang 13.0.0 (clang-1300.0.29.30)]","is64Bit":true}
2024-03-25 12:04:12.326 [info] > /opt/homebrew/bin/python3.10 -I ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py
2024-03-25 12:04:12.326 [debug] Python API env change detected /usr/local/bin/python3 update
2024-03-25 12:04:12.481 [debug] Found interpreter for >> /usr/bin/python3 -I /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py <<: {"versionInfo":[3,9,6,"final",0],"sysPrefix":"/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9","sysVersion":"3.9.6 (default, Feb  3 2024, 15:58:27) \n[Clang 15.0.0 (clang-1500.3.9.4)]","is64Bit":true}
2024-03-25 12:04:12.482 [info] > /opt/homebrew/bin/python3.11 -I ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py ~/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py
2024-03-25 12:04:12.482 [debug] Python API env change detected /usr/bin/python3 update
2024-03-25 12:04:12.482 [debug] Found interpreter for >> /opt/homebrew/bin/python3.10 -I /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py <<: {"versionInfo":[3,10,14,"final",0],"sysPrefix":"/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10","sysVersion":"3.10.14 (main, Mar 19 2024, 21:46:16) [Clang 15.0.0 (clang-1500.3.9.4)]","is64Bit":true}
2024-03-25 12:04:12.482 [debug] Python API env change detected /opt/homebrew/bin/python3.10 update
2024-03-25 12:04:12.652 [debug] Found interpreter for >> /opt/homebrew/bin/python3.11 -I /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/get_output_via_markers.py /Users/tyriar/.vscode-insiders/extensions/ms-python.python-2024.3.10851013/python_files/interpreterInfo.py <<: {"versionInfo":[3,11,8,"final",0],"sysPrefix":"/opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11","sysVersion":"3.11.8 (main, Feb  6 2024, 21:21:21) [Clang 15.0.0 (clang-1500.1.0.2.5)]","is64Bit":true}
2024-03-25 12:04:12.652 [debug] Python API env change detected /opt/homebrew/bin/python3.11 update
2024-03-25 12:04:12.652 [debug] Finished with environment resolver
2024-03-25 12:04:12.652 [debug] Environment resolver resolved /opt/homebrew/bin/python3.11 for {"name":"","location":"","kind":"global-other","executable":{"filename":"/opt/homebrew/bin/python3.11","sysPrefix":"","ctime":1710439746947,"mtime":1710439746947},"display":"Python 3.11.x","version":{"major":3,"minor":11,"micro":-1},"arch":1,"distro":{"org":""},"source":[],"id":"/opt/homebrew/bin/python3.11","detailedDisplayName":"Python 3.11.x"} to {"arch":3,"executable":{"filename":"/opt/homebrew/bin/python3.11","sysPrefix":"/opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11","mtime":-1,"ctime":-1},"version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (main, Feb  6 2024, 21:21:21) [Clang 15.0.0 (clang-1500.1.0.2.5)]"}}
2024-03-25 12:04:12.652 [debug] Environment resolver resolved /opt/homebrew/bin/python3.11 for {"name":"","location":"","kind":"global-other","executable":{"filename":"/opt/homebrew/bin/python3.11","sysPrefix":"","ctime":1710439746947,"mtime":1710439746947},"display":"Python 3.11.x","version":{"major":3,"minor":11,"micro":-1},"arch":1,"distro":{"org":""},"source":[],"id":"/opt/homebrew/bin/python3.11","detailedDisplayName":"Python 3.11.x"} to {"arch":3,"executable":{"filename":"/opt/homebrew/bin/python3.11","sysPrefix":"/opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11","mtime":-1,"ctime":-1},"version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (main, Feb  6 2024, 21:21:21) [Clang 15.0.0 (clang-1500.1.0.2.5)]"}}
2024-03-25 12:04:12.652 [debug] Resolved /opt/homebrew/bin/python3.11 using downstream locator
2024-03-25 12:04:12.652 [debug] Python API env change detected /opt/homebrew/bin/python3.11 update
2024-03-25 12:04:12.652 [debug] Flushing env to cache /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.652 [debug] Resolved /opt/homebrew/bin/python3.11 using downstream locator
2024-03-25 12:04:12.652 [debug] Flushing env to cache /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.654 [debug] Python API env change detected /opt/homebrew/bin/python3.11 update
2024-03-25 12:04:12.655 [debug] Environments added to cache [{"name":"","location":"","kind":"global-other","executable":{"filename":"/usr/bin/python3","sysPrefix":"/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9","ctime":1709179520000,"mtime":1709179520000},"display":"Python 3.9.6 64-bit","version":{"major":3,"minor":9,"micro":6,"release":{"level":"final","serial":0},"sysVersion":"3.9.6 (default, Feb  3 2024, 15:58:27) \n[Clang 15.0.0 (clang-1500.3.9.4)]"},"arch":3,"distro":{"org":""},"source":["path env var"],"id":"/usr/bin/python3","detailedDisplayName":"Python 3.9.6 64-bit"},{"name":"","location":"","kind":"global-other","executable":{"filename":"/usr/local/bin/python3","sysPrefix":"/Library/Frameworks/Python.framework/Versions/3.12","ctime":1697737730581,"mtime":1697737729896},"display":"Python 3.12.0 64-bit","version":{"major":3,"minor":12,"micro":0,"release":{"level":"final","serial":0},"sysVersion":"3.12.0 (v3.12.0:0fb18b02c8, Oct  2 2023, 09:45:56) [Clang 13.0.0 (clang-1300.0.29.30)]"},"arch":3,"distro":{"org":""},"source":["path env var"],"id":"/usr/local/bin/python3","detailedDisplayName":"Python 3.12.0 64-bit"},{"name":"","location":"","kind":"global-other","executable":{"filename":"/opt/homebrew/bin/python3.10","sysPrefix":"/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10","ctime":1711280066232,"mtime":1711280066232},"display":"Python 3.10.14 64-bit","version":{"major":3,"minor":10,"micro":14,"release":{"level":"final","serial":0},"sysVersion":"3.10.14 (main, Mar 19 2024, 21:46:16) [Clang 15.0.0 (clang-1500.3.9.4)]"},"arch":3,"distro":{"org":""},"source":["path env var"],"id":"/opt/homebrew/bin/python3.10","detailedDisplayName":"Python 3.10.14 64-bit"},{"name":"","location":"","kind":"global-other","executable":{"filename":"/opt/homebrew/bin/python3.11","sysPrefix":"/opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11","ctime":1710439746947,"mtime":1710439746947},"display":"Python 3.11.8 64-bit","version":{"major":3,"minor":11,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.11.8 (main, Feb  6 2024, 21:21:21) [Clang 15.0.0 (clang-1500.1.0.2.5)]"},"arch":3,"distro":{"org":""},"source":["path env var"],"id":"/opt/homebrew/bin/python3.11","detailedDisplayName":"Python 3.11.8 64-bit"}]
2024-03-25 12:04:12.655 [debug] Dump environment variables {
    "COMMAND_MODE": "unix2003",
    "HOME": "/Users/tyriar",
    "HOMEBREW_CELLAR": "/opt/homebrew/Cellar",
    "HOMEBREW_PREFIX": "/opt/homebrew",
    "HOMEBREW_REPOSITORY": "/opt/homebrew",
    "INFOPATH": "/opt/homebrew/share/info:",
    "LESS": "-R",
    "LOGNAME": "tyriar",
    "LSCOLORS": "Gxfxcxdxbxegedabagacad",
    "LS_COLORS": "di=1;36:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43",
    "MANPATH": "/opt/homebrew/share/man::",
    "MallocNanoZone": "0",
    "OLDPWD": "/",
    "ORIGINAL_XDG_CURRENT_DESKTOP": "undefined",
    "PAGER": "less",
    "PWD": "/",
    "SHELL": "/bin/zsh",
    "SHLVL": "0",
    "SSH_AUTH_SOCK": "/private/tmp/com.apple.launchd.1Yc7IXFDGh/Listeners",
    "TMPDIR": "/var/folders/nk/960h1fp91k3gpt8_70qg5j0h0000gn/T/",
    "USER": "tyriar",
    "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess",
    "VSCODE_CODE_CACHE_PATH": "/Users/tyriar/Library/Application Support/Code - Insiders/CachedData/b0d975fc6370f15570c380f41015b1ca2cdcb791",
    "VSCODE_CRASH_REPORTER_PROCESS_TYPE": "extensionHost",
    "VSCODE_CWD": "/",
    "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true",
    "VSCODE_IPC_HOOK": "/Users/tyriar/Library/Application Support/Code - Insiders/1.88-main.sock",
    "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en-au\",\"availableLanguages\":{},\"_languagePackSupport\":true}",
    "VSCODE_PID": "15475",
    "XPC_FLAGS": "0x0",
    "XPC_SERVICE_NAME": "application.com.microsoft.VSCodeInsiders.13688824.13688831",
    "ZSH": "/Users/tyriar/.oh-my-zsh",
    "_": "/Applications/Visual Studio Code - Insiders.app/Contents/MacOS/Electron",
    "__CFBundleIdentifier": "com.microsoft.VSCodeInsiders",
    "__CF_USER_TEXT_ENCODING": "0x1F5:0x0:0xF",
    "ELECTRON_RUN_AS_NODE": "1",
    "VSCODE_L10N_BUNDLE_LOCATION": "",
    "PATH": "/Library/Frameworks/Python.framework/Versions/3.12/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin"
}
2024-03-25 12:04:12.656 [debug] Did we determine shell integration to be working for bash ? true
2024-03-25 12:04:12.656 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.656 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.657 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.657 [info] Python interpreter path: /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.657 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.774 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.780 [debug] Activation Commands received undefined for shell /bin/bash, resource undefined and interpreter /opt/homebrew/bin/python3.11
2024-03-25 12:04:12.780 [debug] Activated environment variables for undefined undefined
2024-03-25 12:04:12.796 [debug] Extension ms-python.vscode-pylance accessed onDidChangeActiveEnvironmentPath with args: undefined
2024-03-25 12:04:12.797 [debug] Extension ms-python.vscode-pylance accessed onDidEnvironmentVariablesChange with args: undefined
2024-03-25 12:04:13.599 [info] Starting Pylance language server.
2024-03-25 12:04:13.599 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:13.602 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:13.602 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:13.603 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined
2024-03-25 12:04:13.604 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined
2024-03-25 12:04:13.604 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined
2024-03-25 12:04:13.604 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"/opt/homebrew/bin/python3.11","path":"/opt/homebrew/bin/python3.11"}
2024-03-25 12:04:13.604 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"/opt/homebrew/bin/python3.11","path":"/opt/homebrew/bin/python3.11"}
2024-03-25 12:04:13.854 [debug] Delay Trigger[Test Configuration Change]: triggered=2, called=1
2024-03-25 12:04:18.014 [debug] Terminal shell path '/bin/bash' identified as shell 'bash'
2024-03-25 12:04:18.014 [debug] Shell identified as bash 
2024-03-25 12:04:18.014 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:18.145 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:18.147 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:24.516 [debug] Found cached env for /opt/homebrew/bin/python3.11
2024-03-25 12:04:24.855 [debug] Found cached env for /opt/homebrew/bin/python3.11
karrtikr commented 5 months ago

but there's an exception launching conda (which I don't think is installed) and there's no "worker id"

Sorry, this is actually expected, missed to update the verification steps from before. The important thing to verify here is that the number of environments discovered are still the same, once discovery finishes in both cases.