mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
c4e556eded
"hyperfine pyenv-versions" before with my bash 4.4: Time (mean ± σ): 81.7 ms ± 2.2 ms [User: 67.8 ms, System: 15.7 ms] Range (min … max): 78.3 ms … 87.2 ms 34 runs After: Time (mean ± σ): 70.6 ms ± 2.4 ms [User: 55.6 ms, System: 16.9 ms] Range (min … max): 67.9 ms … 78.9 ms 41 runs
144 lines
3.2 KiB
Bash
Executable file
144 lines
3.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Summary: List all Python versions available to pyenv
|
|
# Usage: pyenv versions [--bare] [--skip-aliases]
|
|
#
|
|
# Lists all Python versions found in `$PYENV_ROOT/versions/*'.
|
|
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
unset bare
|
|
unset skip_aliases
|
|
# Provide pyenv completions
|
|
for arg; do
|
|
case "$arg" in
|
|
--complete )
|
|
echo --bare
|
|
echo --skip-aliases
|
|
exit ;;
|
|
--bare ) bare=1 ;;
|
|
--skip-aliases ) skip_aliases=1 ;;
|
|
* )
|
|
pyenv-help --usage versions >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
versions_dir="${PYENV_ROOT}/versions"
|
|
|
|
if ! enable -f "${BASH_SOURCE%/*}"/pyenv-realpath.dylib realpath 2>/dev/null; then
|
|
if [ -n "$PYENV_NATIVE_EXT" ]; then
|
|
echo "pyenv: failed to load \`realpath' builtin" >&2
|
|
exit 1
|
|
fi
|
|
|
|
READLINK=$(type -p greadlink readlink | head -1)
|
|
if [ -z "$READLINK" ]; then
|
|
echo "pyenv: cannot find readlink - are you missing GNU coreutils?" >&2
|
|
exit 1
|
|
fi
|
|
|
|
resolve_link() {
|
|
$READLINK "$1"
|
|
}
|
|
|
|
realpath() {
|
|
local path="$1"
|
|
local name
|
|
|
|
# Use a subshell to avoid changing the current path
|
|
(
|
|
while [ -n "$path" ]; do
|
|
name="${path##*/}"
|
|
[ "$name" = "$path" ] || cd "${path%/*}"
|
|
path="$(resolve_link "$name" || true)"
|
|
done
|
|
|
|
echo "${PWD}/$name"
|
|
)
|
|
}
|
|
fi
|
|
|
|
if [ -d "$versions_dir" ]; then
|
|
versions_dir="$(realpath "$versions_dir")"
|
|
fi
|
|
|
|
if ((${BASH_VERSINFO[0]} > 3)); then
|
|
declare -A current_versions
|
|
else
|
|
current_versions=()
|
|
fi
|
|
if [ -n "$bare" ]; then
|
|
hit_prefix=""
|
|
miss_prefix=""
|
|
include_system=""
|
|
else
|
|
hit_prefix="* "
|
|
miss_prefix=" "
|
|
OLDIFS="$IFS"
|
|
IFS=:
|
|
if ((${BASH_VERSINFO[0]} > 3)); then
|
|
for i in $(pyenv-version-name || true); do
|
|
current_versions["$i"]="1"
|
|
done
|
|
else
|
|
current_versions=($(pyenv-version-name || true))
|
|
fi
|
|
IFS="$OLDIFS"
|
|
include_system="1"
|
|
fi
|
|
|
|
num_versions=0
|
|
|
|
exists() {
|
|
local car="$1"
|
|
local cdar
|
|
shift
|
|
for cdar in "$@"; do
|
|
if [ "${car}" == "${cdar}" ]; then
|
|
return 0
|
|
fi
|
|
done
|
|
return 1
|
|
}
|
|
|
|
print_version() {
|
|
if [[ ${BASH_VERSINFO[0]} -ge 4 && ${current_versions["$1"]} ]]; then
|
|
echo "${hit_prefix}$1 (set by $(pyenv-version-origin))"
|
|
elif (( ${BASH_VERSINFO[0]} < 3 )) && exists "$1" "${current_versions[@]}"; then
|
|
echo "${hit_prefix}$1 (set by $(pyenv-version-origin))"
|
|
else
|
|
echo "${miss_prefix}$1"
|
|
fi
|
|
num_versions=$((num_versions + 1))
|
|
}
|
|
|
|
# Include "system" in the non-bare output, if it exists
|
|
if [ -n "$include_system" ] && PYENV_VERSION=system pyenv-which python >/dev/null 2>&1; then
|
|
print_version system
|
|
fi
|
|
|
|
shopt -s nullglob
|
|
for path in "$versions_dir"/*; do
|
|
if [ -d "$path" ]; then
|
|
if [ -n "$skip_aliases" ] && [ -L "$path" ]; then
|
|
target="$(realpath "$path")"
|
|
[ "${target%/*}" != "$versions_dir" ] || continue
|
|
[ "${target%/*/envs/*}" != "$versions_dir" ] || continue
|
|
fi
|
|
print_version "${path##*/}"
|
|
# virtual environments created by anaconda/miniconda
|
|
for env_path in "${path}/envs/"*; do
|
|
if [ -d "${env_path}" ]; then
|
|
print_version "${env_path#${PYENV_ROOT}/versions/}"
|
|
fi
|
|
done
|
|
fi
|
|
done
|
|
shopt -u nullglob
|
|
|
|
if [ "$num_versions" -eq 0 ] && [ -n "$include_system" ]; then
|
|
echo "Warning: no Python detected on the system" >&2
|
|
exit 1
|
|
fi
|