2018-01-16 22:20:18 +00:00
|
|
|
# adds homebrew python packages dir to python paths
|
|
|
|
|
2019-11-18 12:22:36 +00:00
|
|
|
if [[ -d "$HOME/Library/Python/2.7/lib/python/site-packages/" ]]; then
|
2018-01-16 22:20:18 +00:00
|
|
|
echo "import site; site.addsitedir(\"$HOME/Library/Homebrew/lib/python2.7/site-packages\")" >> \
|
|
|
|
$HOME/Library/Python/2.7/lib/python/site-packages/homebrew.pth
|
2019-11-18 12:22:36 +00:00
|
|
|
fi
|