1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 04:53:47 -05:00

Add old Anaconda/Miniconda releases

This commit is contained in:
Yamashita Yuu
2014-02-04 13:19:41 +09:00
parent 3aa263b51f
commit 71db79eded
11 changed files with 241 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
case "$(uname -s)" in
"Darwin" )
package_name="Anaconda-1.5.1-MacOSX-x86_64"
package_url="http://repo.continuum.io/archive/Anaconda-1.5.1-MacOSX-x86_64.sh#03942512daf1b39eb3ff9016fc7efa0c"
;;
esac
if [ -n "${package_name}" ] && [ -n "${package_url}" ]; then
install_script "${package_name}" "${package_url}" "anaconda" verify_py27
else
{ echo "Precompiled binary of anaconda-1.5.1 is not available for $(uname -s)-$(uname -m)."
} 1>&4 2>&1
exit 1
fi