From 9aa7b816a7613c9ef5fc97c5ffc0ef62b29ed75c Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 8 Mar 2018 20:58:55 -0800 Subject: [PATCH] [zsh] Add all python user bin/ directories to path --- env.darwin | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/env.darwin b/env.darwin index fc9eb81..f20f67b 100644 --- a/env.darwin +++ b/env.darwin @@ -1,7 +1,9 @@ # vim: set ft=zsh: # Eryn Wells -prepend-to-path "$HOME/Library/Python/2.7/bin" +for f in `ls "$HOME/Library/Python"`; do + prepend-to-path "$HOME/Library/Python/$f/bin" +done prepend-to-path "/usr/local/go/bin" py27local="$HOME/Library/Python/2.7/lib/python/site-packages"