mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 15:46:17 -04:00
Some checks failed
macos_build / macos_build (3.10) (push) Has been cancelled
macos_build / macos_build (3.11) (push) Has been cancelled
macos_build / macos_build (3.12) (push) Has been cancelled
macos_build / macos_build (3.13) (push) Has been cancelled
macos_build / macos_build (3.14) (push) Has been cancelled
pyenv_tests / pyenv_tests (macos-14) (push) Has been cancelled
pyenv_tests / pyenv_tests (macos-15) (push) Has been cancelled
pyenv_tests / pyenv_tests (macos-15-intel) (push) Has been cancelled
pyenv_tests / pyenv_tests (ubuntu-22.04) (push) Has been cancelled
pyenv_tests / pyenv_tests (ubuntu-24.04) (push) Has been cancelled
ubuntu_build / ubuntu_build (3.10) (push) Has been cancelled
ubuntu_build / ubuntu_build (3.11) (push) Has been cancelled
ubuntu_build / ubuntu_build (3.12) (push) Has been cancelled
ubuntu_build / ubuntu_build (3.13) (push) Has been cancelled
ubuntu_build / ubuntu_build (3.14) (push) Has been cancelled
111 lines
2.5 KiB
Bash
Executable file
111 lines
2.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ "$1" = "--debug" ]; then
|
|
export PYENV_DEBUG=1
|
|
shift
|
|
fi
|
|
|
|
if [ -n "$PYENV_DEBUG" ]; then
|
|
# https://wiki-dev.bash-hackers.org/scripting/debuggingtips#making_xtrace_more_useful
|
|
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
|
|
set -x
|
|
fi
|
|
|
|
abort() {
|
|
{ if [ "$#" -eq 0 ]; then cat -
|
|
else echo "pyenv: $*"
|
|
fi
|
|
} >&2
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "${PYENV_ROOT}" ]; then
|
|
PYENV_ROOT="${HOME}/.pyenv"
|
|
else
|
|
PYENV_ROOT="${PYENV_ROOT%/}"
|
|
fi
|
|
export PYENV_ROOT
|
|
|
|
if [ -z "${PYENV_DIR}" ]; then
|
|
PYENV_DIR="$PWD"
|
|
fi
|
|
|
|
if [ ! -d "$PYENV_DIR" ] || [ ! -e "$PYENV_DIR" ]; then
|
|
abort "cannot change working directory to \`$PYENV_DIR'"
|
|
fi
|
|
|
|
PYENV_DIR=$(cd "$PYENV_DIR" && echo "$PWD")
|
|
export PYENV_DIR
|
|
|
|
|
|
shopt -s nullglob
|
|
|
|
_PYENV_INSTALL_PREFIX="$(abs_dirname "$0")"
|
|
_PYENV_INSTALL_PREFIX="${_PYENV_INSTALL_PREFIX%/*}"
|
|
|
|
export _PYENV_INSTALL_PREFIX
|
|
|
|
for plugin_bin in "${_PYENV_INSTALL_PREFIX}"/plugins/*/bin; do
|
|
PATH="${plugin_bin}:${PATH}"
|
|
done
|
|
# PYENV_ROOT can be set to anything, so it may happen to be equal to the base path above,
|
|
# resulting in duplicate PATH entries
|
|
if [ "${_PYENV_INSTALL_PREFIX}" != "$PYENV_ROOT" ]; then
|
|
for plugin_bin in "${PYENV_ROOT}"/plugins/*/bin; do
|
|
PATH="${plugin_bin}:${PATH}"
|
|
done
|
|
fi
|
|
export PATH="${_PYENV_INSTALL_PREFIX}/libexec:${PATH}"
|
|
|
|
PYENV_HOOK_PATH="${PYENV_HOOK_PATH}:${PYENV_ROOT}/pyenv.d"
|
|
if [ "${_PYENV_INSTALL_PREFIX}" != "$PYENV_ROOT" ]; then
|
|
# Add pyenv's own `pyenv.d` unless pyenv was cloned to PYENV_ROOT
|
|
PYENV_HOOK_PATH="${PYENV_HOOK_PATH}:${_PYENV_INSTALL_PREFIX}/pyenv.d"
|
|
fi
|
|
PYENV_HOOK_PATH="${PYENV_HOOK_PATH}:/usr/etc/pyenv.d:/usr/local/etc/pyenv.d:/etc/pyenv.d:/usr/lib/pyenv/hooks"
|
|
for plugin_hook in "${PYENV_ROOT}/plugins/"*/etc/pyenv.d; do
|
|
PYENV_HOOK_PATH="${PYENV_HOOK_PATH}:${plugin_hook}"
|
|
done
|
|
PYENV_HOOK_PATH="${PYENV_HOOK_PATH#:}"
|
|
export PYENV_HOOK_PATH
|
|
|
|
shopt -u nullglob
|
|
|
|
|
|
command="$1"
|
|
case "$command" in
|
|
"" )
|
|
{ pyenv---version
|
|
pyenv-help
|
|
} | abort
|
|
;;
|
|
-v | --version )
|
|
exec pyenv---version
|
|
;;
|
|
-h | --help )
|
|
exec pyenv-help
|
|
;;
|
|
* )
|
|
command_path="$(command -v "pyenv-$command" || true)"
|
|
if [ -z "$command_path" ]; then
|
|
if [ "$command" == "shell" ]; then
|
|
abort "shell integration not enabled. Run \`pyenv init' for instructions."
|
|
else
|
|
abort "no such command \`$command'"
|
|
fi
|
|
fi
|
|
|
|
shift 1
|
|
if [ "$1" = --help ]; then
|
|
if [[ "$command" == "sh-"* ]]; then
|
|
echo "pyenv help \"$command\""
|
|
else
|
|
exec pyenv-help "$command"
|
|
fi
|
|
else
|
|
exec "$command_path" "$@"
|
|
fi
|
|
;;
|
|
esac
|