mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
41 lines
1.1 KiB
Bash
Executable file
41 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Summary: Set or show the global Python version
|
|
#
|
|
# Usage: pyenv global <version>
|
|
#
|
|
# Sets the global Python version. You can override the global version at
|
|
# any time by setting a directory-specific version with `pyenv local'
|
|
# or by setting the `PYENV_VERSION' environment variable.
|
|
#
|
|
# <version> should be a string matching a Python version known to pyenv.
|
|
# The special version string `system' will use your default system Python.
|
|
# Run `pyenv versions' for a list of available Python versions.
|
|
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
# Provide pyenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
echo system
|
|
exec pyenv-versions --bare
|
|
fi
|
|
|
|
versions=($@)
|
|
PYENV_VERSION_FILE="${PYENV_ROOT}/version"
|
|
|
|
if [ -n "$versions" ]; then
|
|
pyenv-version-file-write "$PYENV_VERSION_FILE" "${versions[@]}"
|
|
else
|
|
OLDIFS="$IFS"
|
|
IFS=: versions=($(
|
|
pyenv-version-file-read "$PYENV_VERSION_FILE" ||
|
|
pyenv-version-file-read "${PYENV_ROOT}/global" ||
|
|
pyenv-version-file-read "${PYENV_ROOT}/default" ||
|
|
echo system
|
|
))
|
|
IFS="$OLDIFS"
|
|
for version in "${versions[@]}"; do
|
|
echo "$version"
|
|
done
|
|
fi
|