Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyMSchafer committed Oct 5, 2017
2 parents 546a977 + 0d70dcf commit bfc9a91
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions conda_auto_env.sh
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"

0 comments on commit bfc9a91

Please sign in to comment.