Skip to content

Commit

Permalink
Create conda_auto_env.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyMSchafer authored Sep 6, 2017
1 parent 2787818 commit 0d70dcf
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 0d70dcf

Please sign in to comment.