Created
June 10, 2019 02:30
-
-
Save hsaito/1cb9dcfaf2d140d11c78b9ef531ac422 to your computer and use it in GitHub Desktop.
Anaconda Initialization Script Module for PowerShell (Linux)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Initialize-Conda | |
{ | |
$CONDA_ROOT_DIR = "/path/to/Anaconda" # Change this | |
[System.Environment]::SetEnvironmentVariable("CONDA_EXE", "$CONDA_ROOT_DIR/Scripts/conda.exe", [System.EnvironmentVariableTarget]::Process) | |
[System.Environment]::SetEnvironmentVariable("_CE_M", "", [System.EnvironmentVariableTarget]::Process) | |
[System.Environment]::SetEnvironmentVariable("_CE_CONDA", "", [System.EnvironmentVariableTarget]::Process) | |
[System.Environment]::SetEnvironmentVariable("_CONDA_ROOT", "$CONDA_ROOT_DIR", [System.EnvironmentVariableTarget]::Process) | |
[System.Environment]::SetEnvironmentVariable("_CONDA_EXE", "$CONDA_ROOT_DIR/Scripts/conda.exe", [System.EnvironmentVariableTarget]::Process) | |
Import-Module -Scope Global "$Env:_CONDA_ROOT/bin/conda" | |
conda activate base | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment