mirror of
https://github.com/pyenv/pyenv.git
synced 2025-05-04 20:41:43 +00:00
19 lines
810 B
Groff
19 lines
810 B
Groff
case "$(anaconda_architecture 2>/dev/null || true)" in
|
|
"Linux-x86" )
|
|
install_script "Anaconda-1.9.1-Linux-x86" "http://repo.continuum.io/archive/Anaconda-1.9.1-Linux-x86.sh#f1505963a1c7d2bfe7a73c079b22762d" "anaconda" verify_py27
|
|
;;
|
|
"Linux-x86_64" )
|
|
install_script "Anaconda-1.9.1-Linux-x86_64" "http://repo.continuum.io/archive/Anaconda-1.9.1-Linux-x86_64.sh#9d973e9ac715ce3241c3785704565971" "anaconda" verify_py27
|
|
;;
|
|
"MacOSX-x86_64" )
|
|
install_script "Anaconda-1.9.1-MacOSX-x86_64" "http://repo.continuum.io/archive/Anaconda-1.9.1-MacOSX-x86_64.sh#6ef81bc54a6ab506f352b5589ea80f81" "anaconda" verify_py27
|
|
;;
|
|
* )
|
|
{ echo
|
|
colorize 1 "ERROR"
|
|
echo ": The binary distribution of Anaconda is not available for $(anaconda_architecture 2>/dev/null || true)."
|
|
echo
|
|
} >&2
|
|
exit 1
|
|
;;
|
|
esac
|