Created
November 26, 2015 22:27
-
-
Save dkua/902971e15a428019e020 to your computer and use it in GitHub Desktop.
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
export ANACONDAPATH=$HOME/anaconda; | |
anaconda() { | |
export PATH=$ANACONDAPATH/bin:$PATH; | |
} | |
alias "anaconda"="anaconda" | |
nanaconda() { | |
export PATH=$(echo $PATH | sed -e "s|$ANACONDAPATH/bin:||g"); | |
} | |
alias "nanaconda"="nanaconda" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment