1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 04:23:47 -05:00
Files
pyenv/plugins/python-build/share/python-build/activepython-3.5.4

14 lines
510 B
Groff

case "$(activepython_architecture 2>/dev/null || true)" in
"linux-x86_64" )
install_package "ActivePython-3.5.4.3504-linux-x86_64-glibc-2.12-404899" "http://downloads.activestate.com/ActivePython/releases/3.5.4.3504/ActivePython-3.5.4.3504-linux-x86_64-glibc-2.12-404899.tar.gz" "activepython" verify_py35
;;
* )
{ echo
colorize 1 "ERROR"
echo ": The binary distribution of Active Python is not available for $(activepython_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac