mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
8187bc84e3
users can use multiple python versions at once.
9 lines
236 B
Bash
Executable file
9 lines
236 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
IFS=: PYENV_VERSION_NAMES=($(pyenv-version-name))
|
|
|
|
for PYENV_VERSION_NAME in "${PYENV_VERSION_NAMES[@]}"; do
|
|
echo "$PYENV_VERSION_NAME (set by $(pyenv-version-origin))"
|
|
done
|