osx/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh

8 lines
185 B
Bash
Raw Normal View History

2016-10-08 01:11:47 +00:00
if [[ -e $HOME/Library/Python/2.7/bin ]]; then
PATH+=":$HOME/Library/Python/2.7/bin"
fi
2016-12-16 13:50:15 +00:00
2017-02-09 04:19:37 +00:00
if [[ -e $HOME/Library/Python/3.6/bin ]]; then
PATH+=":$HOME/Library/Python/3.6/bin"
2016-12-16 13:50:15 +00:00
fi