Skip to content

pet reports nested conda as unique conda installs #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
karthiknadig opened this issue Dec 18, 2024 · 18 comments · Fixed by #210
Closed

pet reports nested conda as unique conda installs #184

karthiknadig opened this issue Dec 18, 2024 · 18 comments · Fixed by #210
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug important Issue identified as high-priority info-needed Issue requires more information from poster
Milestone

Comments

@karthiknadig
Copy link
Member

Here is everything before "discover tests":

2024-12-17 11:38:46.030 [info] Experiment 'pythonRecommendTensorboardExt' is active
2024-12-17 11:38:46.030 [info] Experiment 'pythonTerminalEnvVarActivation' is active
2024-12-17 11:38:46.030 [info] Experiment 'pythonTestAdapter' is active
2024-12-17 11:38:46.030 [info] Native locator: Refresh started
2024-12-17 11:38:47.511 [info] > pyenv which python
2024-12-17 11:38:47.511 [info] cwd: .
2024-12-17 11:38:47.534 [info] Conda environment manager found at: /opt/miniconda3/bin/conda
2024-12-17 11:38:47.550 [info] Conda environment manager found at: /home/myuser/git/myrepo2/envs/linux_py311/bin/conda
2024-12-17 11:38:47.555 [info] Conda environment manager found at: /home/myuser/git/myrepo2/envs/linux_py38/bin/conda
2024-12-17 11:38:47.562 [info] Native locator: Refresh finished in 1862 ms
2024-12-17 11:38:48.168 [info] > ~/git/myrepo2/envs/linux_py38/bin/conda info --json
2024-12-17 11:38:50.380 [info] Python interpreter path: ./envs/linux_main/bin/python

I don't see a line saying "Conda env is named"

Originally posted by @gandhis1 in #24627

@DonJayamanne
Copy link
Collaborator

@karthiknadig Not sure what this is trying to solve.
Its challenging to do this, as we have no idea what each manager is, e.g. all of the following can be completely different conda installs.

2024-12-17 11:38:47.534 [info] Conda environment manager found at: /opt/miniconda3/bin/conda
2024-12-17 11:38:47.550 [info] Conda environment manager found at: /home/myuser/git/myrepo2/envs/linux_py311/bin/conda
2024-12-17 11:38:47.555 [info] Conda environment manager found at: /home/myuser/git/myrepo2/envs/linux_py38/bin/conda

Also, its possible for users to change the base environment name, it doesn't always have to be named base, its configurable, hence hardcoding to only report from base is wrong.
I think the tool is doing the right thing by reporting what it can,
The user of the tool (python ext) should probably determine which conda manager should be used.
E.g. when dealing with /home/myuser/git/myrepo2/envs/linux_py311/bin/conda we might want to use the relevant conda manager, as we have no idea whether /opt/miniconda3/bin/conda belong to this same conda install.

This same logic applies to installing miniconda, anaconda, etc all together.

Basically I think this tool should return the managers and its upto the user to determine which manager to use and when.

@DonJayamanne DonJayamanne added the feature-request Request for new features or functionality label Dec 18, 2024
@gandhis1
Copy link

Basically I think this tool should return the managers and its upto the user to determine which manager to use and when.

What logic is it using to determine the priority of the found managers? This logic appears to have changed between Python extension versions, such that in my particular case, it deselects the global one in /opt in favor of the one in the home directory.

@DonJayamanne
Copy link
Collaborator

DonJayamanne commented Dec 18, 2024

such that in my particular case, it deselects the global one in /opt in favor of the one in the home directory.

Please can you explain this statement.

  • What is it
  • what is one
    Are you saying that Python extension deselects the global Python environment in favour of the environment in the home directory?
    Either way, this is an issue that needs to be addressed in Python extension, not PET

@karthiknadig Do you have more context on this issue?

@gandhis1
Copy link

Are you saying that Python extension deselects the global Python environment in favour of the environment in the home directory?

Not environment - conda executable.

When the Python extension runs commands like activation, it needs to invoke a particular conda. If I downgrade to an older version, it will invoke via conda ..., which in my case resolves the global conda in /opt. In the latest version, it now decides to use the conda located in a home directory repo, and references it by absolute path. Yes, I can use python.condaPath, but (1) it appears to be a change in behavior and (2) it's unclear to me why it prefers the home directory one, which is not on the PATH, to the conda that is actually on the PATH.

This is just one symptom of a broader issue that is linked at the top.

@DonJayamanne
Copy link
Collaborator

@gandhis1 thank you for the response, at this stage, I think I need to converse with @karthiknadig to figure out the technical solution. you have been kind to reply, however those are symptoms of the problem, and the fix is slightly different.
I.e. when activating

@karthiknadig I think the problem here is Python extension only supports one Conda exe.
You might recall this was discussed, Python extension needs to be updated to handle multiple conda managers.
As users can install multiple Conda installations and its upto Python ext to figure out and use the right one, right now it always assumes there's just one and usees that for all conda envs, I suspect in this case its using the last reported conda env manager as the single conda exe for all conda envs.

@karthiknadig
Copy link
Member Author

@DonJayamanne Would it be possible to add the source of detection to the conda manager message? In this case the conda under /envs directory is not on PATH, and we need to able to distinguish those. Additionally, when I said report from base, it was about the base environment, no matter the name.

The problem here is, if user does something like install conda into an environment, pet is reporting those as well. The plan with python extension was to handle multiple instances of conda that are installed by user as independent base envs. For example, if you use pyenv to install multiple conda, you can find the base envs via the versions folder. But here pet is reporting conda installed in the envs folder making it hard to determine base. If we have source for these then we can make reasonable decisions by default for user, and in cases where they need to make explicit choices we can present it with right context.

Do let me know if you have a different idea to solve this scenario, because this is something that I think does not require a conda binary selection from the user.

@karthiknadig karthiknadig reopened this Dec 19, 2024
@karthiknadig karthiknadig added bug Issue identified by VS Code Team member as probable bug and removed feature-request Request for new features or functionality labels Jan 31, 2025
@karthiknadig karthiknadig changed the title Report only conda binaries from base environment (like /opt/miniconda3/bin/conda) pet reports nested conda as unique conda installs Jan 31, 2025
@karthiknadig karthiknadig added this to the February 2025 milestone Jan 31, 2025
@karthiknadig karthiknadig added the important Issue identified as high-priority label Jan 31, 2025
@aeschli aeschli modified the milestones: February 2025, March 2025 Mar 3, 2025
@karthiknadig karthiknadig modified the milestones: March 2025, April 2025 Mar 27, 2025
@lszomoru lszomoru modified the milestones: April 2025, May 2025 May 5, 2025
@DonJayamanne
Copy link
Collaborator

@gandhis1 If you are still seeing this please can you share the logs

  • Open an empty folder in VS Code (this is important, no files in VS Code)
  • Set the log level to trace using the command Developer: Set Log Level
  • From the command palette select the command Python: Select Interpreter
  • Next select the command Output: Focus Output View
  • Next select the item Python: Locator from the output views (its a dropdown that displayed on the top right of the output panel)
  • Please copy all of the output from this and share it

Image

@DonJayamanne
Copy link
Collaborator

@karthiknadig I would like to repro this issue before making any changes.
Let me know if you can repro this in anyway, I've tried this bug failed to repro this
@gandhis1 would appreciate some help here, thanks

@DonJayamanne DonJayamanne added the info-needed Issue requires more information from poster label May 6, 2025
@karthiknadig
Copy link
Member Author

karthiknadig commented May 6, 2025

In the logs follow buggy1 for the nested conda problem.

Repro steps:

> conda create -n buggy1 --yes python conda 

logs :

C:\GIT\TPI>c:\Users\kanadig\.vscode-insiders\extensions\ms-python.vscode-python-envs-0.3.11211009-win32-x64\python-env-tools\bin\pet.exe find -l -v > pet-logs.txt
[2025-05-06T03:58:17Z TRACE pet_core::os_environment] Env PATH: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: Conda
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: WindowsRegistry
[2025-05-06T03:58:17Z TRACE pet::find] Searching for environments in global folders: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: VirtualEnvWrapper
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: VirtualEnvWrapper in 2.1409ms
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Searching HKLM\Software\Python\PythonCore
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: Pixi
[2025-05-06T03:58:17Z TRACE pet::find] Searching for environments in global venv folders: []
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: Poetry
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: PyEnv
[2025-05-06T03:58:17Z TRACE pet::find] Searching for environments in workspace folders: ["C:\\GIT\\TPI"]
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: WindowsStore
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: Pixi in 2.0224ms
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: Venv
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: Venv in 2.8751ms
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.mambarc")
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Searching for Windows Store Python in "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps"
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Found Python (C:\Python311) in HKLM\Software\Python\PythonCore\3.11
[2025-05-06T03:58:17Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-06T03:58:17Z TRACE pet_pyenv] PyEnv versions directory not found
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: PyEnv in 9.0915ms
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc")
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.mambarc")
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: PipEnv
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: PipEnv in 924µs
[2025-05-06T03:58:17Z TRACE pet::find] Searching using locator: VirtualEnv
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.condarc")
[2025-05-06T03:58:17Z TRACE pet_poetry::manager] Poetry exe not found
[2025-05-06T03:58:17Z TRACE pet_poetry] Poetry Manager None
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Found Python (C:\Python312) in HKLM\Software\Python\PythonCore\3.12
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\.condarc")
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: VirtualEnv in 926.8µs
[2025-05-06T03:58:17Z TRACE pet_poetry::pyproject_toml] Finding poetry file in "C:\\GIT\\TPI"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc")
[2025-05-06T03:58:17Z TRACE pet_poetry::pyproject_toml] Parsing poetry file: "C:\\GIT\\TPI\\pyproject.toml"
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc")
[2025-05-06T03:58:17Z TRACE pet_poetry::config] Poetry cache (default): Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache")
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.condarc")
[2025-05-06T03:58:17Z TRACE pet_poetry::config] Poetry config file => None, virtualenv.path => "C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache\\virtualenvs", cache_dir => Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache"), virtualenvs_in_project => None
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda environments in known paths ["C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files\\WinMerge", "C:\\Program Files\\dotnet\\", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Python311\\", "C:\\Python311\\Scripts\\", "C:\\Python312\\", "C:\\Python312\\Scripts\\", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\.conda/envs\\buggy1", "C:\\Users\\kanadig\\.conda/envs\\myproject", "C:\\Users\\kanadig\\.conda/envs\\named1", "C:\\Users\\kanadig\\.conda/envs\\native1", "C:\\Users\\kanadig\\.conda/envs\\nopytest1", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\", "C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\system32", "C:\\texlive\\2024\\bin\\windows"]
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc.d")
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\Python37) in HKLM\Software\Python\PythonCore\3.7
[2025-05-06T03:58:17Z TRACE pet_poetry::environment_locations] pyproject.toml not found in any workspace directory
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc")
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: Poetry in 14.1235ms
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc.d")
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Searching HKCU\Software\Python\PythonCore
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc")
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc.d")
[2025-05-06T03:58:17Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0) in HKCU\Software\Python\PythonCore\3.12, but skipping as this is a Windows Store Python
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: WindowsRegistry in 18.6102ms
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\.condarc")
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc.d")
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc.d")
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\.condarc")
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] No Conda environments in .condarc []
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\Schemas"
[2025-05-06T03:58:17Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Found environments.txt file "C:\\Users\\kanadig\\.conda\\environments.txt"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\LSP\\jedi-language-server\\.conda"
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: WindowsStore in 23.3305ms
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda2"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\demo\\demo_sample1\\.conda"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\named1"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\myproject"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\nopytest1"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
[2025-05-06T03:58:17Z TRACE pet_conda::environment_locations] Time taken to get conda environment paths: 131.4568ms
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\ProgramData\miniconda3, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\buggy1, found, & will not be used for the Conda Env: C:\Users\kanadig\.conda\envs\buggy1
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\native1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda2, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\demo\demo_sample1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\named1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\dec2024\C0nda Repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\nopytest1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\myproject, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\LSP\jedi-language-server\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\nov2024\cprefix-repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T03:58:17Z TRACE pet::find] Completed searching using locator: Conda in 247.7844ms

C:\GIT\TPI>type pet-logs.txt
Environment (WindowsRegistry)
   Display-Name: Python 3.11 (64-bit)
   Executable  : C:\Python311\python.exe
   Version     : 3.11.9
   Prefix      : C:\Python311
   Architecture: x64
   Symlinks    : "C:\\Python311\\python.exe"

Environment (WindowsRegistry)
   Display-Name: Python 3.12 (64-bit)
   Executable  : C:\Python312\python.exe
   Version     : 3.12.10
   Prefix      : C:\Python312
   Architecture: x64
   Symlinks    : "C:\\Python312\\python.exe"

Environment (WindowsRegistry)
   Display-Name: Python 3.7 (64-bit)
   Executable  : C:\Program Files\Python37\python.exe
   Version     : 3.7.9
   Prefix      : C:\Program Files\Python37
   Architecture: x64
   Symlinks    : "C:\\Program Files\\Python37\\python.exe"

Environment (WindowsStore)
   Display-Name: Python 3.8
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.8.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.8.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python3.8.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.8.exe"

Environment (WindowsStore)
   Display-Name: Python 3.10
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.10.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.10.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python3.10.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.10.exe"

Environment (WindowsStore)
   Display-Name: Python 3.12
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.12.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.12.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python3.12.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.12.exe"

Environment (WindowsStore)
   Display-Name: Python 3.11
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.11.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python3.11.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.11.exe"

Environment (WindowsStore)
   Display-Name: Python 3.9
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.9.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python3.9.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.9.exe"

Environment (WindowsStore)
   Display-Name: Python 3.13
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.13.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.13.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python3.13.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.13.exe"

Manager (Conda)
   Executable  : C:\ProgramData\miniconda3\Scripts\conda.exe
   Version     : 23.1.0

Environment (Conda)
   Prefix      : C:\Users\kanadig\.conda\envs\nopytest1
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe

Environment (Conda)
   Executable  : C:\GIT\demo\demo_sample1\.conda\python.exe
   Version     : 3.8.18
   Prefix      : C:\GIT\demo\demo_sample1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda2\python.exe
   Version     : 3.10.9
   Prefix      : C:\GIT\test_environments\env1\.conda2
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda\python.exe
   Version     : 3.7.16
   Prefix      : C:\GIT\test_environments\env1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\named1\python.exe
   Version     : 3.12.0
   Prefix      : C:\Users\kanadig\.conda\envs\named1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\myproject\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\myproject
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\LSP\jedi-language-server\.conda\python.exe
   Version     : 3.7.1
   Prefix      : C:\GIT\LSP\jedi-language-server\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\dec2024\C0nda Repro\.conda\python.exe
   Version     : 3.13.1
   Prefix      : C:\GIT\TPI\dec2024\C0nda Repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"

Environment (Conda)
   Name        : base
   Executable  : C:\ProgramData\miniconda3\python.exe
   Version     : 3.10.9
   Prefix      : C:\ProgramData\miniconda3
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\ProgramData\\miniconda3\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\nov2024\cprefix-repro\.conda\python.exe
   Version     : 3.13.0
   Prefix      : C:\GIT\TPI\nov2024\cprefix-repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"

Manager (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Version     : 25.3.1

Environment (Conda)
   Name        : base
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
   Architecture: x64
   Manager     : Conda, C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"


Breakdown by each locator:
--------------------------
Conda                : 247.9408ms
PipEnv               : 1.4347ms
Pixi                 : 4.1445ms
Poetry               : 14.9303ms
PyEnv                : 10.0173ms
Venv                 : 3.628ms
VirtualEnv           : 1.7742ms
VirtualEnvWrapper    : 2.5ms
WindowsRegistry      : 18.9045ms
WindowsStore         : 23.8204ms

Breakdown for finding Environments:
-----------------------------------
GlobalVirtualEnvs    : 3.9964ms
Locators             : 248.7858ms
Path                 : 15.1051ms
Workspaces           : 15.8196ms

Managers:
---------
Conda                : 2

Environments (21):
------------------
Conda                : 12
WindowsRegistry      : 3
WindowsStore         : 6

Completed in 257ms

@DonJayamanne
Copy link
Collaborator

Weird, I cannot repro this at all, with those same steps,
Thats baiscally what I did as well
@karthiknadig When you get a chance, please can you pull this branch and give it a test
#210

@karthiknadig
Copy link
Member Author

Logs from the PR, still the same problem:

C:\GIT\misc\python-environment-tools\target\release\pet.exe find -l -v
[2025-05-06T16:29:11Z TRACE pet_core::os_environment] Env PATH: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T16:29:11Z TRACE pet::find] Searching for environments in workspace folders: ["C:\\GIT\\TPI"]
[2025-05-06T16:29:11Z TRACE pet::find] Searching for environments in global folders: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: WindowsStore
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: PyEnv
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: WindowsRegistry
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Searching for Windows Store Python in "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps"
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: Pixi
[2025-05-06T16:29:11Z TRACE pet::find] Searching for environments in global venv folders: []
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: Conda
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: PipEnv
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Searching HKLM\Software\Python\PythonCore
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: Pixi in 1.1761ms
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: VirtualEnv
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: VirtualEnv in 3.147ms
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: PipEnv in 2.9507ms
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: Poetry
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: VirtualEnvWrapper
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Found Python (C:\Python311) in HKLM\Software\Python\PythonCore\3.11
[2025-05-06T16:29:11Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
Environment (WindowsRegistry)
[2025-05-06T16:29:11Z TRACE pet_pyenv] PyEnv versions directory not found
   Display-Name: Python 3.11 (64-bit)
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: PyEnv in 9.6191ms
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\Schemas"
   Executable  : C:\Python311\python.exe
[2025-05-06T16:29:11Z TRACE pet::find] Searching using locator: Venv
   Version     : 3.11.9
[2025-05-06T16:29:11Z TRACE pet_poetry::manager] Poetry exe not found
   Prefix      : C:\Python311
[2025-05-06T16:29:11Z TRACE pet_poetry] Poetry Manager None
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0"
   Architecture: x64
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: Venv in 7.2311ms
   Symlinks    : "C:\\Python311\\python.exe"
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: VirtualEnvWrapper in 1.8871ms

[2025-05-06T16:29:11Z TRACE pet_poetry::pyproject_toml] Finding poetry file in "C:\\GIT\\TPI"
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\Schemas"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc")
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.condarc")
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Found Python (C:\Python312) in HKLM\Software\Python\PythonCore\3.12
[2025-05-06T16:29:11Z TRACE pet_poetry::pyproject_toml] Parsing poetry file: "C:\\GIT\\TPI\\pyproject.toml"
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0"
Environment (WindowsRegistry)
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc.d")
   Display-Name: Python 3.12 (64-bit)
[2025-05-06T16:29:11Z TRACE pet_poetry::config] Poetry cache (default): Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache")
   Executable  : C:\Python312\python.exe
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\.condarc")
   Version     : 3.12.10
[2025-05-06T16:29:11Z TRACE pet_poetry::config] Poetry config file => None, virtualenv.path => "C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache\\virtualenvs", cache_dir => Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache"), virtualenvs_in_project => None
   Prefix      : C:\Python312
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\.condarc")
   Architecture: x64
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\Schemas"
   Symlinks    : "C:\\Python312\\python.exe"
[2025-05-06T16:29:11Z TRACE pet_poetry::environment_locations] pyproject.toml not found in any workspace directory

[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc.d")
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: Poetry in 19.4675ms
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc.d")
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\Python37) in HKLM\Software\Python\PythonCore\3.7
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc")
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\Schemas"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda environments in known paths ["C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files\\WinMerge", "C:\\Program Files\\dotnet\\", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Python311\\", "C:\\Python311\\Scripts\\", "C:\\Python312\\", "C:\\Python312\\Scripts\\", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\.conda/envs\\buggy1", "C:\\Users\\kanadig\\.conda/envs\\myproject", "C:\\Users\\kanadig\\.conda/envs\\named1", "C:\\Users\\kanadig\\.conda/envs\\native1", "C:\\Users\\kanadig\\.conda/envs\\nopytest1", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\", "C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\system32", "C:\\texlive\\2024\\bin\\windows"]
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc")
Environment (WindowsRegistry)
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0"
   Display-Name: Python 3.7 (64-bit)
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc")
   Executable  : C:\Program Files\Python37\python.exe
   Version     : 3.7.9
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.mambarc")
   Prefix      : C:\Program Files\Python37
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc.d")
   Architecture: x64
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc.d")
   Symlinks    : "C:\\Program Files\\Python37\\python.exe"
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\Schemas"

[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc")
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0"
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Searching HKCU\Software\Python\PythonCore
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.mambarc")
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.condarc")
[2025-05-06T16:29:11Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0) in HKCU\Software\Python\PythonCore\3.12, but skipping as this is a Windows Store Python
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\Schemas"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\.condarc")
[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: WindowsRegistry in 30.508ms
[2025-05-06T16:29:11Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0"
Environment (WindowsStore)
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] No Conda environments in .condarc []
   Display-Name: Python 3.10
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.10.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.10.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python3.10.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.10.exe"

Environment (WindowsStore)
   Display-Name: Python 3.13
[2025-05-06T16:29:11Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.13.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.13.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python3.13.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.13.exe"

[2025-05-06T16:29:11Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.11.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
Environment (WindowsStore)
   Display-Name: Python 3.8
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.8.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.8.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python3.8.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.8.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Found environments.txt file "C:\\Users\\kanadig\\.conda\\environments.txt"

Environment (WindowsStore)
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\LSP\\jedi-language-server\\.conda"
   Display-Name: Python 3.12
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.12.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda"
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.12.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda2"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python3.12.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\demo\\demo_sample1\\.conda"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.12.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\named1"

Environment (WindowsStore)
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
   Display-Name: Python 3.9
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.9.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python3.9.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.9.exe"

[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda"
Environment (WindowsStore)
   Display-Name: Python 3.11
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.11.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python3.11.exe"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\myproject"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.11.exe"

[2025-05-06T16:29:11Z TRACE pet::find] Completed searching using locator: WindowsStore in 47.4111ms
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\nopytest1"
[2025-05-06T16:29:11Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
[2025-05-06T16:29:12Z TRACE pet_conda::environment_locations] Time taken to get conda environment paths: 381.2425ms
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\buggy1, found, & will not be used for the Conda Env: C:\Users\kanadig\.conda\envs\buggy1
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\myproject, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\demo\demo_sample1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\ProgramData\miniconda3, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\nopytest1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\nov2024\cprefix-repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\dec2024\C0nda Repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda2, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\GIT\LSP\jedi-language-server\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\named1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
Manager (Conda)
   Executable  : C:\ProgramData\miniconda3\Scripts\conda.exe
   Version     : 23.1.0
[2025-05-06T16:29:12Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\native1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3

Environment (Conda)
   Prefix      : C:\Users\kanadig\.conda\envs\nopytest1
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe

Environment (Conda)
   Name        : base
   Executable  : C:\ProgramData\miniconda3\python.exe
   Version     : 3.10.9
   Prefix      : C:\ProgramData\miniconda3
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\ProgramData\\miniconda3\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\myproject\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\myproject
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\nov2024\cprefix-repro\.conda\python.exe
   Version     : 3.13.0
   Prefix      : C:\GIT\TPI\nov2024\cprefix-repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda2\python.exe
   Version     : 3.10.9
   Prefix      : C:\GIT\test_environments\env1\.conda2
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\demo\demo_sample1\.conda\python.exe
   Version     : 3.8.18
   Prefix      : C:\GIT\demo\demo_sample1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda\python.exe
   Version     : 3.7.16
   Prefix      : C:\GIT\test_environments\env1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\dec2024\C0nda Repro\.conda\python.exe
   Version     : 3.13.1
   Prefix      : C:\GIT\TPI\dec2024\C0nda Repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\named1\python.exe
   Version     : 3.12.0
   Prefix      : C:\Users\kanadig\.conda\envs\named1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\LSP\jedi-language-server\.conda\python.exe
   Version     : 3.7.1
   Prefix      : C:\GIT\LSP\jedi-language-server\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

Manager (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Version     : 25.3.1

Environment (Conda)
   Name        : base
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
   Architecture: x64
   Manager     : Conda, C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"

[2025-05-06T16:29:12Z TRACE pet::find] Completed searching using locator: Conda in 599.6809ms
[2025-05-06T16:29:13Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe" in Ok(1.6294936s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.11.9.final.0\", \"sys_prefix\": \"c:\\\\python311\", \"executable\": \"c:\\\\python311\\\\python.exe\", \"is64_bit\": true}"
[2025-05-06T16:29:13Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe"
[2025-05-06T16:29:13Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.11.exe") in Path resolved as Some(WindowsRegistry)
[2025-05-06T16:29:13Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-06T16:29:13Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.12.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
[2025-05-06T16:29:14Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe" in Ok(1.3710935s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.12.10.final.0\", \"sys_prefix\": \"c:\\\\python312\", \"executable\": \"c:\\\\python312\\\\python.exe\", \"is64_bit\": true}"
[2025-05-06T16:29:14Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe"
[2025-05-06T16:29:14Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.12.exe") in Path resolved as Some(WindowsRegistry)

Breakdown by each locator:
--------------------------
Conda                : 599.8416ms
PipEnv               : 4.9698ms
Pixi                 : 4.176ms
Poetry               : 19.9994ms
PyEnv                : 9.9464ms
Venv                 : 9.4887ms
VirtualEnv           : 3.5501ms
VirtualEnvWrapper    : 10.6427ms
WindowsRegistry      : 30.9963ms
WindowsStore         : 47.5963ms

Breakdown for finding Environments:
-----------------------------------
GlobalVirtualEnvs    : 2.5268ms
Locators             : 601.1492ms
Path                 : 3.0494003s
Workspaces           : 34.307ms

Managers:
---------
Conda                : 2

Environments (21):
------------------
Conda                : 12
WindowsRegistry      : 3
WindowsStore         : 6

Completed in 3062ms

@DonJayamanne
Copy link
Collaborator

@karthiknadig I think i found the issue, please can you test this again with the latest changes,
got some additional logging as well that should help if not fixed.

@karthiknadig
Copy link
Member Author

Still happening:

[2025-05-06T23:15:14Z TRACE pet_core::os_environment] Env PATH: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: Pixi
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: PipEnv
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: PipEnv in 269.5µs
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: Pixi in 303.8µs
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: Poetry
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: PyEnv
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: WindowsStore
[2025-05-06T23:15:14Z TRACE pet::find] Searching for environments in workspace folders: ["C:\\GIT\\TPI"]
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: Conda
[2025-05-06T23:15:14Z TRACE pet::find] Searching for environments in global venv folders: []
[2025-05-06T23:15:14Z TRACE pet::find] Searching for environments in global folders: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: WindowsRegistry
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: Venv
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: VirtualEnv
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Searching for Windows Store Python in "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps"
[2025-05-06T23:15:14Z TRACE pet::find] Searching using locator: VirtualEnvWrapper
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: VirtualEnvWrapper in 4.1392ms
[2025-05-06T23:15:14Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-06T23:15:14Z TRACE pet_pyenv] PyEnv versions directory not found
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: PyEnv in 6.8466ms
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: VirtualEnv in 3.1555ms
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\.condarc")
[2025-05-06T23:15:14Z TRACE pet_poetry::manager] Poetry exe not found
[2025-05-06T23:15:14Z TRACE pet_poetry] Poetry Manager None
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: Venv in 2.5712ms
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc.d")
[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Searching HKLM\Software\Python\PythonCore
[2025-05-06T23:15:14Z TRACE pet_poetry::pyproject_toml] Finding poetry file in "C:\\GIT\\TPI"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc.d")
[2025-05-06T23:15:14Z TRACE pet_poetry::pyproject_toml] Parsing poetry file: "C:\\GIT\\TPI\\pyproject.toml"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda environments in known paths ["C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files\\WinMerge", "C:\\Program Files\\dotnet\\", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Python311\\", "C:\\Python311\\Scripts\\", "C:\\Python312\\", "C:\\Python312\\Scripts\\", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\.conda/envs\\buggy1", "C:\\Users\\kanadig\\.conda/envs\\myproject", "C:\\Users\\kanadig\\.conda/envs\\named1", "C:\\Users\\kanadig\\.conda/envs\\native1", "C:\\Users\\kanadig\\.conda/envs\\nopytest1", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\", "C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\system32", "C:\\texlive\\2024\\bin\\windows"]
[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Found Python (C:\Python311) in HKLM\Software\Python\PythonCore\3.11
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc.d")
[2025-05-06T23:15:14Z TRACE pet_poetry::config] Poetry cache (default): Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache")
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.mambarc")
Environment (WindowsRegistry)
[2025-05-06T23:15:14Z TRACE pet_poetry::config] Poetry config file => None, virtualenv.path => "C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache\\virtualenvs", cache_dir => Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache"), virtualenvs_in_project => None
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\Schemas"
   Display-Name: Python 3.11 (64-bit)
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.mambarc")
   Executable  : C:\Python311\python.exe
[2025-05-06T23:15:14Z TRACE pet_poetry::environment_locations] pyproject.toml not found in any workspace directory
   Version     : 3.11.9
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0"
   Prefix      : C:\Python311
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc")
   Architecture: x64
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: Poetry in 13.066ms
   Symlinks    : "C:\\Python311\\python.exe"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\.condarc")

[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc")
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc.d")
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\Schemas"
[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Found Python (C:\Python312) in HKLM\Software\Python\PythonCore\3.12
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.condarc")
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc")
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.condarc")
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0"
Environment (WindowsRegistry)
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc")
   Display-Name: Python 3.12 (64-bit)
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\.condarc")
   Executable  : C:\Python312\python.exe
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc.d")
   Version     : 3.12.10
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\Schemas"
   Prefix      : C:\Python312
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc")
   Architecture: x64
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0"
   Symlinks    : "C:\\Python312\\python.exe"

[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\Python37) in HKLM\Software\Python\PythonCore\3.7
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\Schemas"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] No Conda environments in .condarc []
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0"
Environment (WindowsRegistry)
   Display-Name: Python 3.7 (64-bit)
   Executable  : C:\Program Files\Python37\python.exe
   Version     : 3.7.9
   Prefix      : C:\Program Files\Python37
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\Schemas"
   Architecture: x64
   Symlinks    : "C:\\Program Files\\Python37\\python.exe"

[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Searching HKCU\Software\Python\PythonCore
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0"
[2025-05-06T23:15:14Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0) in HKCU\Software\Python\PythonCore\3.12, but skipping as this is a Windows Store Python
[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: WindowsRegistry in 20.402ms
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\Schemas"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Found environments.txt file "C:\\Users\\kanadig\\.conda\\environments.txt"
[2025-05-06T23:15:14Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\LSP\\jedi-language-server\\.conda"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda"
Environment (WindowsStore)
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda2"
   Display-Name: Python 3.9
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.9.exe
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\demo\\demo_sample1\\.conda"
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0
   Architecture: x64
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\named1"
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python.exe"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python3.9.exe"
[2025-05-06T23:15:14Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python.exe"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.9.exe"

[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda"
Environment (WindowsStore)
   Display-Name: Python 3.13
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda"
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.13.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\myproject"
   Architecture: x64
[2025-05-06T23:15:14Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.11.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.13.exe"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\nopytest1"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python3.13.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python.exe"
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.13.exe"

Environment (WindowsStore)
   Display-Name: Python 3.12
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.12.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.12.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python3.12.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.12.exe"

Environment (WindowsStore)
   Display-Name: Python 3.8
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.8.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.8.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python3.8.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.8.exe"

Environment (WindowsStore)
   Display-Name: Python 3.10
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.10.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.10.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python3.10.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.10.exe"

Environment (WindowsStore)
   Display-Name: Python 3.11
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.11.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python3.11.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.11.exe"

[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: WindowsStore in 30.5544ms
[2025-05-06T23:15:14Z TRACE pet_conda::environment_locations] Time taken to get conda environment paths: 271.8194ms
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\buggy1, found, & will not be used for the Conda Env: C:\Users\kanadig\.conda\envs\buggy1
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\demo\demo_sample1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\dec2024\C0nda Repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\nov2024\cprefix-repro\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\myproject, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\ProgramData\miniconda3, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\nopytest1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda2, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\GIT\LSP\jedi-language-server\.conda, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\named1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\native1, found, & will not be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1"), arch: Some(X64) } for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\LSP\\jedi-language-server\\.conda", executable: Some("C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"), version: Some("3.7.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\Users\\kanadig\\.conda"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
Manager (Conda)
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Version     : 23.1.0
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"

[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\GIT\test_environments\env1\.conda2\python.exe
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Version     : 3.10.9
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Prefix      : C:\GIT\test_environments\env1\.conda2
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Architecture: x64
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\LSP\\jedi-language-server\\.conda", executable: Some("C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"), version: Some("3.7.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"

Environment (Conda)
   Executable  : C:\GIT\TPI\nov2024\cprefix-repro\.conda\python.exe
   Version     : 3.13.0
   Prefix      : C:\GIT\TPI\nov2024\cprefix-repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\demo\demo_sample1\.conda\python.exe
   Version     : 3.8.18
   Prefix      : C:\GIT\demo\demo_sample1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"

Environment (Conda)
   Prefix      : C:\Users\kanadig\.conda\envs\nopytest1
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\dec2024\C0nda Repro\.conda\python.exe
[2025-05-06T23:15:14Z TRACE pet_conda::manager] 1. Found conda manager from path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Version     : 3.13.1
[2025-05-06T23:15:14Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\Scripts\\conda.exe", version: Some("25.3.1"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1"), arch: Some(X64) } for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Prefix      : C:\GIT\TPI\dec2024\C0nda Repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\myproject\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\myproject
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda\python.exe
   Version     : 3.7.16
   Prefix      : C:\GIT\test_environments\env1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\LSP\jedi-language-server\.conda\python.exe
   Version     : 3.7.1
   Prefix      : C:\GIT\LSP\jedi-language-server\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"

Environment (Conda)
   Name        : base
   Executable  : C:\ProgramData\miniconda3\python.exe
   Version     : 3.10.9
   Prefix      : C:\ProgramData\miniconda3
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\ProgramData\\miniconda3\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\named1\python.exe
   Version     : 3.12.0
   Prefix      : C:\Users\kanadig\.conda\envs\named1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"

Manager (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Version     : 25.3.1

Environment (Conda)
   Name        : base
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
   Architecture: x64
   Manager     : Conda, C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"

[2025-05-06T23:15:14Z TRACE pet::find] Completed searching using locator: Conda in 435.3665ms
[2025-05-06T23:15:16Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe" in Ok(2.1425457s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.11.9.final.0\", \"sys_prefix\": \"c:\\\\python311\", \"executable\": \"c:\\\\python311\\\\python.exe\", \"is64_bit\": true}"
[2025-05-06T23:15:16Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe"
[2025-05-06T23:15:16Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.11.exe") in Path resolved as Some(WindowsRegistry)
[2025-05-06T23:15:16Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-06T23:15:16Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.12.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
[2025-05-06T23:15:17Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe" in Ok(1.0809075s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.12.10.final.0\", \"sys_prefix\": \"c:\\\\python312\", \"executable\": \"c:\\\\python312\\\\python.exe\", \"is64_bit\": true}"
[2025-05-06T23:15:17Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe"
[2025-05-06T23:15:17Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.12.exe") in Path resolved as Some(WindowsRegistry)

Breakdown by each locator:
--------------------------
Conda                : 435.4811ms
PipEnv               : 532.2µs
Pixi                 : 1.3124ms
Poetry               : 13.7993ms
PyEnv                : 6.9788ms
Venv                 : 6.4016ms
VirtualEnv           : 5.2283ms
VirtualEnvWrapper    : 4.3522ms
WindowsRegistry      : 20.5369ms
WindowsStore         : 30.6486ms

Breakdown for finding Environments:
-----------------------------------
GlobalVirtualEnvs    : 3.5917ms
Locators             : 436.9211ms
Path                 : 3.2565858s
Workspaces           : 19.231ms

Managers:
---------
Conda                : 2

Environments (21):
------------------
Conda                : 12
WindowsRegistry      : 3
WindowsStore         : 6

Completed in 3264ms

@DonJayamanne
Copy link
Collaborator

Please try again.

@karthiknadig
Copy link
Member Author

Still the same :(

>C:\GIT\misc\python-environment-tools\target\release\pet.exe find -l -v
[2025-05-07T02:06:38Z TRACE pet_core::os_environment] Env PATH: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-07T02:06:38Z TRACE pet::find] Searching for environments in workspace folders: ["C:\\GIT\\TPI"]
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: WindowsStore
[2025-05-07T02:06:38Z TRACE pet::find] Searching for environments in global folders: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: Poetry
[2025-05-07T02:06:38Z TRACE pet::find] Searching for environments in global venv folders: []
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: VirtualEnvWrapper
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: Pixi
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: Conda
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: WindowsRegistry
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: PipEnv
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: PipEnv in 2.5157ms
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Searching for Windows Store Python in "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps"
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: Venv
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: VirtualEnv
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: VirtualEnvWrapper in 318.6µs
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: Pixi in 1.3092ms
[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Searching HKLM\Software\Python\PythonCore
[2025-05-07T02:06:38Z TRACE pet::find] Searching using locator: PyEnv
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: Venv in 3.2552ms
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: VirtualEnv in 3.4668ms
[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Found Python (C:\Python311) in HKLM\Software\Python\PythonCore\3.11
[2025-05-07T02:06:38Z TRACE pet_poetry::manager] Poetry exe not found
[2025-05-07T02:06:38Z TRACE pet_poetry] Poetry Manager None
[2025-05-07T02:06:38Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
Environment (WindowsRegistry)
[2025-05-07T02:06:38Z TRACE pet_pyenv] PyEnv versions directory not found
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: PyEnv in 10.2613ms
   Display-Name: Python 3.11 (64-bit)
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.condarc")
   Executable  : C:\Python311\python.exe
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc")
   Version     : 3.11.9
[2025-05-07T02:06:38Z TRACE pet_poetry::pyproject_toml] Finding poetry file in "C:\\GIT\\TPI"
   Prefix      : C:\Python311
[2025-05-07T02:06:38Z TRACE pet_poetry::pyproject_toml] Parsing poetry file: "C:\\GIT\\TPI\\pyproject.toml"
   Architecture: x64
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc")
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:06:38Z TRACE pet_poetry::config] Poetry cache (default): Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache")
   Symlinks    : "C:\\Python311\\python.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.mambarc")

[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:06:38Z TRACE pet_poetry::config] Poetry config file => None, virtualenv.path => "C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache\\virtualenvs", cache_dir => Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache"), virtualenvs_in_project => None
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\.condarc")
[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Found Python (C:\Python312) in HKLM\Software\Python\PythonCore\3.12
[2025-05-07T02:06:38Z TRACE pet_poetry::environment_locations] pyproject.toml not found in any workspace directory
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\.condarc")
Environment (WindowsRegistry)
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: Poetry in 17.0317ms
   Display-Name: Python 3.12 (64-bit)
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda environments in known paths ["C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files\\WinMerge", "C:\\Program Files\\dotnet\\", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Python311\\", "C:\\Python311\\Scripts\\", "C:\\Python312\\", "C:\\Python312\\Scripts\\", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\.conda/envs\\buggy1", "C:\\Users\\kanadig\\.conda/envs\\myproject", "C:\\Users\\kanadig\\.conda/envs\\named1", "C:\\Users\\kanadig\\.conda/envs\\native1", "C:\\Users\\kanadig\\.conda/envs\\nopytest1", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\", "C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\system32", "C:\\texlive\\2024\\bin\\windows"]
   Executable  : C:\Python312\python.exe
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0"
   Version     : 3.12.10
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc.d")
   Prefix      : C:\Python312
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.condarc")
   Architecture: x64
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc")
   Symlinks    : "C:\\Python312\\python.exe"
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\Schemas"

[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\.condarc")
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc.d")
[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\Python37) in HKLM\Software\Python\PythonCore\3.7
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc.d")
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc.d")
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc")
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc")
Environment (WindowsRegistry)
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.mambarc")
   Display-Name: Python 3.7 (64-bit)
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc.d")
   Executable  : C:\Program Files\Python37\python.exe
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\Schemas"
   Version     : 3.7.9
   Prefix      : C:\Program Files\Python37
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0"
   Architecture: x64
   Symlinks    : "C:\\Program Files\\Python37\\python.exe"

[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Searching HKCU\Software\Python\PythonCore
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] No Conda environments in .condarc []
[2025-05-07T02:06:38Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0) in HKCU\Software\Python\PythonCore\3.12, but skipping as this is a Windows Store Python
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: WindowsRegistry in 28.2072ms
[2025-05-07T02:06:38Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0"
Environment (WindowsStore)
   Display-Name: Python 3.11
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.11.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python3.11.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.exe"
[2025-05-07T02:06:38Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.11.exe"

Environment (WindowsStore)
   Display-Name: Python 3.9
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.9.exe
[2025-05-07T02:06:38Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.11.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python3.9.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.9.exe"

Environment (WindowsStore)
   Display-Name: Python 3.10
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.10.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.10.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python3.10.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.10.exe"

Environment (WindowsStore)
   Display-Name: Python 3.13
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Found environments.txt file "C:\\Users\\kanadig\\.conda\\environments.txt"
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.13.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\LSP\\jedi-language-server\\.conda"
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.13.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python3.13.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda2"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\demo\\demo_sample1\\.conda"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.13.exe"

[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\named1"
Environment (WindowsStore)
   Display-Name: Python 3.12
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.12.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.12.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python3.12.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.exe"
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\myproject"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.12.exe"

[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\nopytest1"
Environment (WindowsStore)
   Display-Name: Python 3.8
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.8.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.8.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python3.8.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.8.exe"

[2025-05-07T02:06:38Z TRACE pet::find] Completed searching using locator: WindowsStore in 50.9347ms
[2025-05-07T02:06:38Z TRACE pet_conda::environment_locations] Time taken to get conda environment paths: 328.0113ms
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\buggy1, found, & will be used for the Conda Env: C:\Users\kanadig\.conda\envs\buggy1
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\ProgramData\miniconda3, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\demo\demo_sample1\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\myproject, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\nopytest1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda2, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\nov2024\cprefix-repro\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\native1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\named1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\dec2024\C0nda Repro\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:38Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:06:38Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:38Z TRACE pet_conda::environments] Conda install folder C:\GIT\LSP\jedi-language-server\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
Manager (Conda)
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Version     : 23.1.0
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
   Prefix      : C:\Users\kanadig\.conda\envs\nopytest1
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\Users\kanadig\.conda\envs\myproject\python.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Version     : 3.13.2
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1"), arch: Some(X64) } for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Prefix      : C:\Users\kanadig\.conda\envs\myproject
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Architecture: x64
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda\python.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Version     : 3.7.16
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Prefix      : C:\GIT\test_environments\env1\.conda
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\Users\\kanadig\\.conda"
   Architecture: x64
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda\\python.exe"
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\GIT\demo\demo_sample1\.conda\python.exe
[2025-05-07T02:06:39Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
   Version     : 3.8.18
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Prefix      : C:\GIT\demo\demo_sample1\.conda
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Architecture: x64
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"

[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Name        : base
   Executable  : C:\ProgramData\miniconda3\python.exe
   Version     : 3.10.9
   Prefix      : C:\ProgramData\miniconda3
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\ProgramData\\miniconda3\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\dec2024\C0nda Repro\.conda\python.exe
   Version     : 3.13.1
   Prefix      : C:\GIT\TPI\dec2024\C0nda Repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda2\python.exe
   Version     : 3.10.9
   Prefix      : C:\GIT\test_environments\env1\.conda2
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\named1\python.exe
   Version     : 3.12.0
   Prefix      : C:\Users\kanadig\.conda\envs\named1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\nov2024\cprefix-repro\.conda\python.exe
   Version     : 3.13.0
   Prefix      : C:\GIT\TPI\nov2024\cprefix-repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\LSP\jedi-language-server\.conda\python.exe
   Version     : 3.7.1
   Prefix      : C:\GIT\LSP\jedi-language-server\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"

[2025-05-07T02:06:39Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\Scripts\\conda.exe", version: Some("25.3.1"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1"), arch: Some(X64) } for path: "C:\\Users\\kanadig\\.conda\\envs\\buggy1"
Manager (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Version     : 25.3.1

Environment (Conda)
   Name        : base
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
   Architecture: x64
   Manager     : Conda, C:\Users\kanadig\.conda\envs\buggy1\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"

[2025-05-07T02:06:39Z TRACE pet::find] Completed searching using locator: Conda in 557.0185ms
[2025-05-07T02:06:40Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe" in Ok(1.6317175s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.11.9.final.0\", \"sys_prefix\": \"c:\\\\python311\", \"executable\": \"c:\\\\python311\\\\python.exe\", \"is64_bit\": true}"
[2025-05-07T02:06:40Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe"
[2025-05-07T02:06:40Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.11.exe") in Path resolved as Some(WindowsRegistry)
[2025-05-07T02:06:40Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-07T02:06:40Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.12.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
[2025-05-07T02:06:41Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe" in Ok(1.66874s) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.12.10.final.0\", \"sys_prefix\": \"c:\\\\python312\", \"executable\": \"c:\\\\python312\\\\python.exe\", \"is64_bit\": true}"
[2025-05-07T02:06:41Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe"
[2025-05-07T02:06:41Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.12.exe") in Path resolved as Some(WindowsRegistry)

Breakdown by each locator:
--------------------------
Conda                : 557.3711ms
PipEnv               : 2.6712ms
Pixi                 : 4.9699ms
Poetry               : 18.3719ms
PyEnv                : 10.6046ms
Venv                 : 5.6152ms
VirtualEnv           : 6.0766ms
VirtualEnvWrapper    : 4.0363ms
WindowsRegistry      : 28.5565ms
WindowsStore         : 51.1881ms

Breakdown for finding Environments:
-----------------------------------
GlobalVirtualEnvs    : 1.6814ms
Locators             : 558.9637ms
Path                 : 3.3580838s
Workspaces           : 27.5873ms

Managers:
---------
Conda                : 2

Environments (21):
------------------
Conda                : 12
WindowsRegistry      : 3
WindowsStore         : 6

Completed in 3438ms

@DonJayamanne
Copy link
Collaborator

again 🙏🏾

@karthiknadig
Copy link
Member Author

This is better but, now it is not detecting named envs: (expected Name field to be set)

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

logs:

>C:\GIT\misc\python-environment-tools\target\release\pet.exe find -l -v
[2025-05-07T02:41:36Z TRACE pet_core::os_environment] Env PATH: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-07T02:41:36Z TRACE pet::find] Searching for environments in workspace folders: ["C:\\GIT\\TPI"]
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: WindowsStore
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: WindowsRegistry
[2025-05-07T02:41:36Z TRACE pet::find] Searching for environments in global folders: ["C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Python312\\Scripts\\", "C:\\Python312\\", "C:\\Python311\\Scripts\\", "C:\\Python311\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\WINDOWS\\system32", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Program Files\\WinMerge", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\dotnet\\", "C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\texlive\\2024\\bin\\windows", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\"]
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: VirtualEnv
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: Venv
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: Venv in 453.6µs
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: Poetry
[2025-05-07T02:41:36Z TRACE pet::find] Searching for environments in global venv folders: []
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: PipEnv
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Searching HKLM\Software\Python\PythonCore
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: VirtualEnvWrapper
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: VirtualEnvWrapper in 7.3946ms
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: VirtualEnv in 254.1µs
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: Pixi
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: Pixi in 10.9934ms
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Searching for Windows Store Python in "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps"
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: PipEnv in 7.2932ms
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Found Python (C:\Python311) in HKLM\Software\Python\PythonCore\3.11
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: PyEnv
[2025-05-07T02:41:36Z TRACE pet::find] Searching using locator: Conda
[2025-05-07T02:41:36Z TRACE pet_poetry::manager] Poetry exe not found
[2025-05-07T02:41:36Z TRACE pet_poetry] Poetry Manager None
Environment (WindowsRegistry)
[2025-05-07T02:41:36Z TRACE pet_poetry::pyproject_toml] Finding poetry file in "C:\\GIT\\TPI"
   Display-Name: Python 3.11 (64-bit)
[2025-05-07T02:41:36Z TRACE pet_poetry::pyproject_toml] Parsing poetry file: "C:\\GIT\\TPI\\pyproject.toml"
   Executable  : C:\Python311\python.exe
[2025-05-07T02:41:36Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
   Version     : 3.11.9
[2025-05-07T02:41:36Z TRACE pet_pyenv] PyEnv versions directory not found
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: PyEnv in 22.138ms
[2025-05-07T02:41:36Z TRACE pet_poetry::config] Poetry cache (default): Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Found environments.txt file "C:\\Users\\kanadig\\.conda\\environments.txt"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc.d")
   Prefix      : C:\Python311
[2025-05-07T02:41:36Z TRACE pet_poetry::config] Poetry config file => None, virtualenv.path => "C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache\\virtualenvs", cache_dir => Some("C:\\Users\\kanadig\\AppData\\Local\\pypoetry\\Cache"), virtualenvs_in_project => None
   Architecture: x64
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\LSP\\jedi-language-server\\.conda"
   Symlinks    : "C:\\Python311\\python.exe"
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\Schemas"

[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.condarc")
[2025-05-07T02:41:36Z TRACE pet_poetry::environment_locations] pyproject.toml not found in any workspace directory
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: Poetry in 26.8121ms
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc.d")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda environments in known paths ["C:\\Program Files\\Docker\\Docker\\resources\\bin", "C:\\Program Files\\Git\\cmd", "C:\\Program Files\\Hatch\\", "C:\\Program Files\\Quarto\\bin", "C:\\Program Files\\WinMerge", "C:\\Program Files\\dotnet\\", "C:\\Program Files (x86)\\Common Files\\Oracle\\Java\\java8path", "C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI2\\wbin", "C:\\ProgramData\\chocolatey\\bin", "C:\\ProgramData\\miniconda3\\Scripts", "C:\\Python311\\", "C:\\Python311\\Scripts\\", "C:\\Python312\\", "C:\\Python312\\Scripts\\", "C:\\Users\\kanadig\\.cargo\\bin", "C:\\Users\\kanadig\\.conda/envs\\buggy1", "C:\\Users\\kanadig\\.conda/envs\\myproject", "C:\\Users\\kanadig\\.conda/envs\\named1", "C:\\Users\\kanadig\\.conda/envs\\native1", "C:\\Users\\kanadig\\.conda/envs\\nopytest1", "C:\\Users\\kanadig\\.pixi\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WinGet\\Packages\\Schniz.fnm_Microsoft.Winget.Source_8wekyb3d8bbwe", "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\bin", "C:\\Users\\kanadig\\AppData\\Local\\Programs\\nu\\bin\\", "C:\\Users\\kanadig\\AppData\\Local\\fnm_multishells\\5996_1746490615026", "C:\\WINDOWS", "C:\\WINDOWS\\System32\\OpenSSH\\", "C:\\WINDOWS\\System32\\Wbem", "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\", "C:\\WINDOWS\\system32", "C:\\texlive\\2024\\bin\\windows"]
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\condarc")
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Found Python (C:\Python312) in HKLM\Software\Python\PythonCore\3.12
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\test_environments\\env1\\.conda2"
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\demo\\demo_sample1\\.conda"
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.condarc")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\named1"
Environment (WindowsRegistry)
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\.mambarc")
   Display-Name: Python 3.12 (64-bit)
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.mambarc")
   Executable  : C:\Python312\python.exe
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
   Version     : 3.12.10
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\Schemas"
   Prefix      : C:\Python312
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\condarc.d")
   Architecture: x64
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\native1"
   Symlinks    : "C:\\Python312\\python.exe"
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0"

[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc.d")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\condarc")
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\Python37) in HKLM\Software\Python\PythonCore\3.7
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.config\\conda\\.condarc")
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\.condarc")
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\myproject"
Environment (WindowsRegistry)
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0"
   Display-Name: Python 3.7 (64-bit)
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C::\\ProgramData\\conda\\condarc")
   Executable  : C:\Program Files\Python37\python.exe
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\nopytest1"
   Version     : 3.7.9
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc.d")
   Prefix      : C:\Program Files\Python37
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\Schemas"
   Architecture: x64
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\ProgramData\\conda\\condarc")
   Symlinks    : "C:\\Program Files\\Python37\\python.exe"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] Conda env in environments.txt file "C:\\Users\\kanadig\\.conda\\envs\\buggy1"

[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0"
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] .condarc not found ("C:\\Users\\kanadig\\.conda\\.condarc")
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Searching HKCU\Software\Python\PythonCore
[2025-05-07T02:41:36Z TRACE pet_windows_registry::environments] Found Python (C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0) in HKCU\Software\Python\PythonCore\3.12, but skipping as this is a Windows Store Python
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\Schemas"
[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: WindowsRegistry in 41.0473ms
[2025-05-07T02:41:36Z TRACE pet_conda::environment_locations] No Conda environments in .condarc []
[2025-05-07T02:41:36Z TRACE pet_windows_store::environments] Opening registry key "Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0"
Environment (WindowsStore)
   Display-Name: Python 3.8
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.8.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.8.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_3.8.2800.0_x64__qbz5n2kfra8p0\\python3.8.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\python3.8.exe"

Environment (WindowsStore)
   Display-Name: Python 3.13
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.13.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0
[2025-05-07T02:41:36Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.13.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.1008.0_x64__qbz5n2kfra8p0\\python3.13.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\python3.13.exe"

Environment (WindowsStore)
   Display-Name: Python 3.9
[2025-05-07T02:41:36Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.11.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.9.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.9.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\\python3.9.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\python3.9.exe"

Environment (WindowsStore)
   Display-Name: Python 3.10
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.10.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.10.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\\python3.10.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\python3.10.exe"

Environment (WindowsStore)
   Display-Name: Python 3.12
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.12.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.12.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\\python3.12.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\\python3.12.exe"

Environment (WindowsStore)
   Display-Name: Python 3.11
   Executable  : C:\Users\kanadig\AppData\Local\Microsoft\WindowsApps\python3.11.exe
   Prefix      : C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0
   Architecture: x64
   Symlinks    : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\python3.11.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python.exe"
               : "C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\\python3.11.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.exe"
               : "C:\\Users\\kanadig\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python3.11.exe"

[2025-05-07T02:41:36Z TRACE pet::find] Completed searching using locator: WindowsStore in 52.6225ms
[2025-05-07T02:41:37Z TRACE pet_conda::environment_locations] Time taken to get conda environment paths: 281.4135ms
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\demo\demo_sample1\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\buggy1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\myproject, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\LSP\jedi-language-server\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\dec2024\C0nda Repro\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\TPI\nov2024\cprefix-repro\.conda, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\ProgramData\miniconda3, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\GIT\test_environments\env1\.conda2, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\named1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\nopytest1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::environments] Conda install folder C:\Users\kanadig\.conda\envs\native1, found, & will be used for the Conda Env: C:\ProgramData\miniconda3
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\LSP\\jedi-language-server\\.conda", executable: Some("C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"), version: Some("3.7.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\myproject", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Finding conda manager for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Manager (Conda)
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Executable  : C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
   Version     : 23.1.0
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\buggy1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"), version: Some("3.13.2"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda", executable: Some("C:\\GIT\\test_environments\\env1\\.conda\\python.exe"), version: Some("3.7.16"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\nopytest1", executable: None, version: None, conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: None } for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\Users\kanadig\.conda\envs\myproject\python.exe
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\LSP\\jedi-language-server\\.conda", executable: Some("C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"), version: Some("3.7.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Version     : 3.13.2
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"
   Prefix      : C:\Users\kanadig\.conda\envs\myproject
   Architecture: x64
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\myproject\\python.exe"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager for path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Prefix      : C:\Users\kanadig\.conda\envs\nopytest1
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"

[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\Users\kanadig\.conda\envs\buggy1\python.exe
   Version     : 3.13.2
   Prefix      : C:\Users\kanadig\.conda\envs\buggy1
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\native1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"), version: Some("3.12.6"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\buggy1\\python.exe"
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"

[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\demo\\demo_sample1\\.conda", executable: Some("C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"), version: Some("3.8.18"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Executable  : C:\GIT\test_environments\env1\.conda\python.exe
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Finding conda manager from parent path: "C:\\"
   Version     : 3.7.16
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\Users\\kanadig\\.conda\\envs\\named1", executable: Some("C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"), version: Some("3.12.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Prefix      : C:\GIT\test_environments\env1\.conda
[2025-05-07T02:41:37Z TRACE pet_conda::manager] 1. Find conda manager from install path: "C:\\ProgramData\\miniconda3"
   Architecture: x64
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda", executable: Some("C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"), version: Some("3.13.1"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\ProgramData\\miniconda3", executable: Some("C:\\ProgramData\\miniconda3\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda\\python.exe"

[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda", executable: Some("C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"), version: Some("3.13.0"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"
Environment (Conda)
   Executable  : C:\GIT\LSP\jedi-language-server\.conda\python.exe
   Version     : 3.7.1
   Prefix      : C:\GIT\LSP\jedi-language-server\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\LSP\\jedi-language-server\\.conda\\python.exe"
[2025-05-07T02:41:37Z TRACE pet_conda] 3.1 Found conda manager CondaManager { executable: "C:\\ProgramData\\miniconda3\\Scripts\\conda.exe", version: Some("23.1.0"), conda_dir: Some("C:\\ProgramData\\miniconda3") } for CondaEnvironment { prefix: "C:\\GIT\\test_environments\\env1\\.conda2", executable: Some("C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"), version: Some("3.10.9"), conda_dir: Some("C:\\ProgramData\\miniconda3"), arch: Some(X64) } for path: "C:\\ProgramData\\miniconda3"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\native1\python.exe
   Version     : 3.12.6
   Prefix      : C:\Users\kanadig\.conda\envs\native1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\native1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\demo\demo_sample1\.conda\python.exe
   Version     : 3.8.18
   Prefix      : C:\GIT\demo\demo_sample1\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\demo\\demo_sample1\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\Users\kanadig\.conda\envs\named1\python.exe
   Version     : 3.12.0
   Prefix      : C:\Users\kanadig\.conda\envs\named1
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\Users\\kanadig\\.conda\\envs\\named1\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\dec2024\C0nda Repro\.conda\python.exe
   Version     : 3.13.1
   Prefix      : C:\GIT\TPI\dec2024\C0nda Repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\dec2024\\C0nda Repro\\.conda\\python.exe"

Environment (Conda)
   Name        : base
   Executable  : C:\ProgramData\miniconda3\python.exe
   Version     : 3.10.9
   Prefix      : C:\ProgramData\miniconda3
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\ProgramData\\miniconda3\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\TPI\nov2024\cprefix-repro\.conda\python.exe
   Version     : 3.13.0
   Prefix      : C:\GIT\TPI\nov2024\cprefix-repro\.conda
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\TPI\\nov2024\\cprefix-repro\\.conda\\python.exe"

Environment (Conda)
   Executable  : C:\GIT\test_environments\env1\.conda2\python.exe
   Version     : 3.10.9
   Prefix      : C:\GIT\test_environments\env1\.conda2
   Architecture: x64
   Manager     : Conda, C:\ProgramData\miniconda3\Scripts\conda.exe
   Symlinks    : "C:\\GIT\\test_environments\\env1\\.conda2\\python.exe"

[2025-05-07T02:41:37Z TRACE pet::find] Completed searching using locator: Conda in 350.5955ms
[2025-05-07T02:41:37Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe" in Ok(730.0656ms) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.11.9.final.0\", \"sys_prefix\": \"c:\\\\python311\", \"executable\": \"c:\\\\python311\\\\python.exe\", \"is64_bit\": true}"
[2025-05-07T02:41:37Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.11.exe"
[2025-05-07T02:41:37Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.11.exe") in Path resolved as Some(WindowsRegistry)
[2025-05-07T02:41:37Z TRACE pet_pyenv] PyEnv Info PyEnvInfo { exe: None, versions: None, version: None }
[2025-05-07T02:41:37Z TRACE pet_python_utils::env] Executing Python: C:\ProgramData\chocolatey\bin\python3.12.exe -c import json, sys; print('093385e9-59f7-4a16-a604-14bf206256fe');print(json.dumps({'version': '.'.join(str(n) for n in sys.version_info), 'sys_prefix': sys.prefix, 'executable': sys.executable, 'is64_bit': sys.maxsize > 2**32}))
[2025-05-07T02:41:38Z TRACE pet_python_utils::env] Executed Python "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe" in Ok(636.8208ms) & produced an output "093385e9-59f7-4a16-a604-14bf206256fe\r\n{\"version\": \"3.12.10.final.0\", \"sys_prefix\": \"c:\\\\python312\", \"executable\": \"c:\\\\python312\\\\python.exe\", \"is64_bit\": true}"
[2025-05-07T02:41:38Z TRACE pet_python_utils::cache] Caching interpreter info for "C:\\ProgramData\\chocolatey\\bin\\python3.12.exe"
[2025-05-07T02:41:38Z TRACE pet::locators] Env ("C:\\ProgramData\\chocolatey\\bin\\python3.12.exe") in Path resolved as Some(WindowsRegistry)

Breakdown by each locator:
--------------------------
Conda                : 350.8796ms
PipEnv               : 11.6277ms
Pixi                 : 11.354ms
Poetry               : 27.5071ms
PyEnv                : 22.6192ms
Venv                 : 1.1301ms
VirtualEnv           : 8.05ms
VirtualEnvWrapper    : 7.9033ms
WindowsRegistry      : 41.5145ms
WindowsStore         : 52.7448ms

Breakdown for finding Environments:
-----------------------------------
GlobalVirtualEnvs    : 9.3382ms
Locators             : 356.3522ms
Path                 : 1.4241624s
Workspaces           : 37.3685ms

Managers:
---------
Conda                : 1

Environments (21):
------------------
Conda                : 12
WindowsRegistry      : 3
WindowsStore         : 6

Completed in 1442ms

@DonJayamanne
Copy link
Collaborator

This is better but, now it is not detecting named envs: (expected Name field to be set)

Yeah, thats a more challenging issue. lets focus on that after I first get this fixed.
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug important Issue identified as high-priority info-needed Issue requires more information from poster
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants