8 lines
185 B
Bash
8 lines
185 B
Bash
if [[ -e $HOME/Library/Python/2.7/bin ]]; then
|
|
PATH+=":$HOME/Library/Python/2.7/bin"
|
|
fi
|
|
|
|
if [[ -e $HOME/Library/Python/3.6/bin ]]; then
|
|
PATH+=":$HOME/Library/Python/3.6/bin"
|
|
fi
|