mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
CPython installer requires existing Pyhthon of similar version.
This commit is contained in:
parent
e1a5b326e4
commit
8fa6b4a184
1 changed files with 5 additions and 3 deletions
|
@ -156,11 +156,13 @@ if [ -z "${PYTHON_BUILD_CACHE_PATH}" ] && [ -d "${PYENV_ROOT}/cache" ]; then
|
|||
export PYTHON_BUILD_CACHE_PATH="${PYENV_ROOT}/cache"
|
||||
fi
|
||||
|
||||
# Default PYENV_VERSION to the globally-specified Python version. (The
|
||||
# Default PYENV_VERSION to the friendly Python version. (The
|
||||
# CPython installer requires an existing Python installation to run. An
|
||||
# unsatisfied local .python-version file can cause the installer to
|
||||
# unsatisfied local python version can cause the installer to
|
||||
# fail.)
|
||||
#export PYENV_VERSION="$(pyenv global 2>/dev/null || true)"
|
||||
if [[ "${VERSION_NAME}" == [23]"."* ]]; then
|
||||
export PYENV_VERSION="$(pyenv-whence "python${VERSION_NAME%%.${VERSION_NAME##*.}}" 2>/dev/null | tail -1 || true)"
|
||||
fi
|
||||
|
||||
|
||||
# Execute `before_install` hooks.
|
||||
|
|
Loading…
Reference in a new issue