From 86709372d42e198817bdebe19db481bb52b43663 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 31 May 2018 11:55:48 -0700 Subject: [PATCH] .zshrc: Add ~/.local/bin to PATH on Linux This is where pip binaries end up it seems. --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 2dee7b5..0e638c9 100644 --- a/.zshrc +++ b/.zshrc @@ -54,7 +54,7 @@ if [[ "$OSTYPE" =~ ^darwin.*$ ]]; then PATH=$PATH:/usr/local/opt/postgresql@9.5/bin elif [[ "$OSTYPE" =~ ^linux.*$ ]]; then - # noop + PATH=$PATH:~/.local/bin fi alias ls='ls -F --color=auto'