forked from CoreyMSchafer/code_snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2787818
commit 0d70dcf
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Modified from: | ||
# https://github.com/chdoig/conda-auto-env | ||
|
||
# Auto activate conda environments | ||
function conda_auto_env() { | ||
if [ -e "environment.yaml" ]; then | ||
ENV_NAME=$(head -n 1 environment.yaml | cut -f2 -d ' ') | ||
# Check if you are already in the environment | ||
if [[ $CONDA_PREFIX != *$ENV_NAME* ]]; then | ||
# Try to activate environment | ||
source activate $ENV_NAME &>/dev/null | ||
fi | ||
fi | ||
} | ||
|
||
export PROMPT_COMMAND="conda_auto_env;$PROMPT_COMMAND" |