mirror of
https://github.com/pyenv/pyenv.git
synced 2026-02-07 11:17:36 +09:00
20 lines
820 B
Plaintext
20 lines
820 B
Plaintext
|
|
case "$(anaconda_architecture 2>/dev/null || true)" in
|
||
|
|
"Linux-x86" )
|
||
|
|
install_script "Anaconda3-4.0.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86.sh#c88cbe27cc8fb4976e6bd38068cc57d6" "anaconda" verify_py35
|
||
|
|
;;
|
||
|
|
"Linux-x86_64" )
|
||
|
|
install_script "Anaconda3-4.0.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh#546d1f02597587c685fa890c1d713b51" "anaconda" verify_py35
|
||
|
|
;;
|
||
|
|
"MacOSX-x86_64" )
|
||
|
|
install_script "Anaconda3-4.0.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.0.0-MacOSX-x86_64.sh#efd870aa3fabc8f4865a1b9567e69b69" "anaconda" verify_py35
|
||
|
|
;;
|
||
|
|
* )
|
||
|
|
{ echo
|
||
|
|
colorize 1 "ERROR"
|
||
|
|
echo ": The binary distribution of Anaconda3 is not available for $(anaconda_architecture 2>/dev/null || true)."
|
||
|
|
echo
|
||
|
|
} >&2
|
||
|
|
exit 1
|
||
|
|
;;
|
||
|
|
esac
|