Index | Diary

Journal 2023-07-28

Miniconda Installer for Windows

conda python Win10 Win11 powershell

Removing Stray Conda Environments

conda python Win10 Win11 powershell

$childOptions = @{
  # Obtain from `conda info --envs`.
  Path = 'C:\Users\jdfen\Github\pyedna\.tox'
  Exclude 'log', '.tmp', 'dist'
}
Get-ChildItem @childOptions |
  ForEach-Object -Process {
    conda env remove -p $_.FullName
  }

Page created on 2025-07-03