From 8bac5627118abfc54e436c845ce5555f5a8c3917 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Tue, 18 Apr 2023 16:46:06 -0400 Subject: [PATCH] add odd system-wide python PATH for when I use ansible --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index 03c94bf..f945757 100644 --- a/.zshrc +++ b/.zshrc @@ -92,6 +92,8 @@ function ll { alias http_server="python3 -m http.server" alias z="$(which zoxide)" +[ -d "$HOME/Library/Python/3.9/bin" ] && export PATH="$PATH:/Users/andrew/Library/Python/3.9/bin" + [ -f "$HOME/.zshrc.local" ] && source "$HOME/.zshrc.local" [ -f "$HOME/.zshrc.auto" ] && source "$HOME/.zshrc.auto"