2012-08-31 06:23:41 +00:00
|
|
|
#!/usr/bin/env bash
|
2013-01-18 08:41:41 +00:00
|
|
|
# Summary: Configure the shell environment for pyenv
|
|
|
|
# Usage: eval "$(pyenv init - [--no-rehash] [<shell>])"
|
|
|
|
|
2012-08-31 06:23:41 +00:00
|
|
|
set -e
|
|
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
|
2015-11-21 04:13:52 +00:00
|
|
|
# Provide pyenv completions
|
2015-11-20 14:20:01 +00:00
|
|
|
if [ "$1" = "--complete" ]; then
|
|
|
|
echo -
|
|
|
|
echo --no-rehash
|
|
|
|
echo bash
|
|
|
|
echo fish
|
|
|
|
echo ksh
|
|
|
|
echo zsh
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2012-08-31 06:23:41 +00:00
|
|
|
print=""
|
|
|
|
no_rehash=""
|
|
|
|
for args in "$@"
|
|
|
|
do
|
|
|
|
if [ "$args" = "-" ]; then
|
|
|
|
print=1
|
2013-09-30 09:02:12 +00:00
|
|
|
shift
|
2012-08-31 06:23:41 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$args" = "--no-rehash" ]; then
|
|
|
|
no_rehash=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
shell="$1"
|
|
|
|
if [ -z "$shell" ]; then
|
2015-05-10 14:03:06 +00:00
|
|
|
shell="$(ps -p "$PPID" -o 'args=' 2>/dev/null || true)"
|
2014-01-02 19:58:29 +00:00
|
|
|
shell="${shell%% *}"
|
2015-12-24 12:23:01 +00:00
|
|
|
shell="${shell##-}"
|
2015-05-10 14:17:35 +00:00
|
|
|
shell="${shell:-$SHELL}"
|
|
|
|
shell="${shell##*/}"
|
2012-08-31 06:23:41 +00:00
|
|
|
fi
|
|
|
|
|
2014-11-30 15:20:53 +00:00
|
|
|
root="${0%/*}/.."
|
2012-08-31 06:23:41 +00:00
|
|
|
|
|
|
|
if [ -z "$print" ]; then
|
|
|
|
case "$shell" in
|
|
|
|
bash )
|
2015-10-26 14:45:52 +00:00
|
|
|
if [ -f "${HOME}/.bashrc" ] && [ ! -f "${HOME}/.bash_profile" ]; then
|
|
|
|
profile='~/.bashrc'
|
|
|
|
else
|
|
|
|
profile='~/.bash_profile'
|
|
|
|
fi
|
2012-08-31 06:23:41 +00:00
|
|
|
;;
|
|
|
|
zsh )
|
|
|
|
profile='~/.zshrc'
|
|
|
|
;;
|
|
|
|
ksh )
|
|
|
|
profile='~/.profile'
|
|
|
|
;;
|
2013-08-15 12:27:52 +00:00
|
|
|
fish )
|
|
|
|
profile='~/.config/fish/config.fish'
|
|
|
|
;;
|
2012-08-31 06:23:41 +00:00
|
|
|
* )
|
|
|
|
profile='your profile'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-11-21 04:13:52 +00:00
|
|
|
{ echo "# Load pyenv automatically by appending"
|
2011-08-04 05:45:40 +00:00
|
|
|
echo "# the following to ${profile}:"
|
2012-08-31 06:23:41 +00:00
|
|
|
echo
|
2013-09-30 09:02:12 +00:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
2016-05-28 22:29:45 +00:00
|
|
|
echo 'status --is-interactive; and source (pyenv init -|psub)'
|
2013-09-30 09:02:12 +00:00
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo 'eval "$(pyenv init -)"'
|
|
|
|
;;
|
|
|
|
esac
|
2012-08-31 06:23:41 +00:00
|
|
|
echo
|
|
|
|
} >&2
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p "${PYENV_ROOT}/"{shims,versions}
|
|
|
|
|
2013-12-26 04:48:43 +00:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
2017-06-05 13:02:24 +00:00
|
|
|
echo "set -gx PATH '${PYENV_ROOT}/shims' \$PATH"
|
|
|
|
echo "set -gx PYENV_SHELL $shell"
|
2013-12-26 04:48:43 +00:00
|
|
|
;;
|
|
|
|
* )
|
2014-11-30 15:20:53 +00:00
|
|
|
echo 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
2013-12-26 04:48:43 +00:00
|
|
|
echo "export PYENV_SHELL=$shell"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2013-09-30 09:02:12 +00:00
|
|
|
completion="${root}/completions/pyenv.${shell}"
|
2013-12-26 04:48:43 +00:00
|
|
|
if [ -r "$completion" ]; then
|
2016-02-20 15:27:39 +00:00
|
|
|
echo "source '$completion'"
|
2013-12-26 04:48:43 +00:00
|
|
|
fi
|
2012-08-31 06:23:41 +00:00
|
|
|
|
|
|
|
if [ -z "$no_rehash" ]; then
|
2015-11-21 04:13:52 +00:00
|
|
|
echo 'command pyenv rehash 2>/dev/null'
|
2012-08-31 06:23:41 +00:00
|
|
|
fi
|
|
|
|
|
2013-09-30 09:02:12 +00:00
|
|
|
commands=(`pyenv-commands --sh`)
|
2013-08-15 12:27:52 +00:00
|
|
|
case "$shell" in
|
|
|
|
fish )
|
|
|
|
cat <<EOS
|
2013-09-30 09:02:12 +00:00
|
|
|
function pyenv
|
|
|
|
set command \$argv[1]
|
|
|
|
set -e argv[1]
|
|
|
|
|
|
|
|
switch "\$command"
|
|
|
|
case ${commands[*]}
|
2017-06-05 13:02:24 +00:00
|
|
|
source (pyenv "sh-\$command" \$argv|psub)
|
2013-09-30 09:02:12 +00:00
|
|
|
case '*'
|
|
|
|
command pyenv "\$command" \$argv
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
;;
|
|
|
|
ksh )
|
|
|
|
cat <<EOS
|
|
|
|
function pyenv {
|
|
|
|
typeset command
|
2013-08-15 12:27:52 +00:00
|
|
|
EOS
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
cat <<EOS
|
2012-08-31 06:23:41 +00:00
|
|
|
pyenv() {
|
2013-09-30 09:02:12 +00:00
|
|
|
local command
|
|
|
|
EOS
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2014-06-30 14:00:09 +00:00
|
|
|
if [ "$shell" != "fish" ]; then
|
2013-09-30 09:02:12 +00:00
|
|
|
IFS="|"
|
|
|
|
cat <<EOS
|
2013-01-18 09:57:08 +00:00
|
|
|
command="\$1"
|
2012-08-31 06:23:41 +00:00
|
|
|
if [ "\$#" -gt 0 ]; then
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "\$command" in
|
|
|
|
${commands[*]})
|
2015-11-21 04:13:52 +00:00
|
|
|
eval "\$(pyenv "sh-\$command" "\$@")";;
|
2012-08-31 06:23:41 +00:00
|
|
|
*)
|
|
|
|
command pyenv "\$command" "\$@";;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
EOS
|
2014-06-30 14:00:09 +00:00
|
|
|
fi
|