Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
|
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
|