mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Add a workaround for Anaconda's curl
issue
Anaconda's `curl` doesn't work with HTTPS on platfroms where `/etc/pki/tls/certs/ca-bundle.crt` isn't available.
This commit is contained in:
parent
f27e3ebb94
commit
20432dda88
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ fi
|
|||
# fail.)
|
||||
if [[ "${VERSION_NAME}" == [23]"."* ]]; then
|
||||
for version in "${VERSION_NAME%-dev}" "${VERSION_NAME%.*}" "${VERSION_NAME%%.*}"; do
|
||||
PYENV_VERSION="$(pyenv-whence "python${version}" 2>/dev/null | tail -n 1 || true)"
|
||||
# Anaconda's `curl` doesn't work on platfrom where `/etc/pki/tls/certs/ca-bundle.crt` isn't available (e.g. Debian)
|
||||
PYENV_VERSION="$(pyenv-whence "python${version}" 2>/dev/null | grep -v conda | tail -n 1 || true)"
|
||||
if [ -n "${PYENV_VERSION}" ]; then
|
||||
export PYENV_VERSION
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue