From 789425cc7487b40738da833fcfa9595a58680d16 Mon Sep 17 00:00:00 2001 From: arshavindn Date: Fri, 5 Oct 2018 00:39:01 +0700 Subject: [PATCH] update user bin setup --- modules/python/init.zsh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/python/init.zsh b/modules/python/init.zsh index 96047c1b..a9c9188c 100644 --- a/modules/python/init.zsh +++ b/modules/python/init.zsh @@ -24,14 +24,14 @@ elif (( $+commands[python] )); then # Prepend PEP 370 per user site packages directory, which defaults to # ~/Library/Python on macOS and ~/.local elsewhere, to PATH. The # path can be overridden using PYTHONUSERBASE. - if [[ -n "$PYTHONUSERBASE" ]]; then - path=($PYTHONUSERBASE/bin $path) - elif [[ "$OSTYPE" == darwin* ]]; then - path=($HOME/Library/Python/*/bin(N) $path) - else - # This is subject to change. - path=($HOME/.local/bin $path) - fi + # if [[ -n "$PYTHONUSERBASE" ]]; then + # path=($PYTHONUSERBASE/bin $path) + # elif [[ "$OSTYPE" == darwin* ]]; then + # path=($HOME/Library/Python/*/bin(N) $path) + # else + # # This is subject to change. + # path=($HOME/.local/bin $path) + # fi fi function _python-workon-cwd {