From 30cbb39dd154258309291a9d80eb140d822470c7 Mon Sep 17 00:00:00 2001 From: Neal Probert Date: Fri, 21 Jan 2022 07:23:15 -0500 Subject: [PATCH] Add .local/bin to path --- dot/bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dot/bashrc b/dot/bashrc index 166e1f3..522d3b3 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -1,6 +1,9 @@ # NTCNA V2X development # Python and VirtualEnv +if [ -d ~/.local/bin ]; then + export PATH=~/.local/bin:$PATH +fi if [ -x /usr/local/bin/virtualenvwrapper.sh ]; then VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3 source /usr/local/bin/virtualenvwrapper.sh