From a17b0d62934eb11449a0b0d32444694c5e20f3ce Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 6 Dec 2019 10:36:38 +0000 Subject: [PATCH] Add python user bin folder --- zshrc.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index 4248820..de9aa76 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -80,6 +80,9 @@ test -d /usr/local/pgsql && export PATH="$PATH:/usr/local/pgsql/bin" # PHP binaries test -d $HOME/.php/bin && export PATH="$PATH:$HOME/.php/bin" +# macOS Python User binaries +test -d $HOME/Library/Python/3.7/bin && export PATH="$PATH:$HOME/Library/Python/3.7/bin" + # Set Homebrew Env variables export HOMEBREW_NO_ANALYTICS=1 export HOMEBREW_AUTO_UPDATE_SECS=3600