704aa5318a | ||
---|---|---|
.. | ||
Readme.md |
Readme.md
MISC - Miniconda Windows Setup
Miniconda install
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o miniconda.exe
Start-Process -FilePath ".\miniconda.exe" -ArgumentList "/S" -Wait
del miniconda.exe
Exable Windows scripts execution
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Enable conda in Powershell
Open Anaconda PowerShell Prompt
conda init powershell
To disable base env auto activation:
conda config --set auto_activate_base false