mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-10 12:33:48 -05:00
Add old Anaconda/Miniconda releases
This commit is contained in:
26
plugins/python-build/share/python-build/anaconda-1.6.1
Normal file
26
plugins/python-build/share/python-build/anaconda-1.6.1
Normal file
@@ -0,0 +1,26 @@
|
||||
case "$(uname -s)" in
|
||||
"Darwin" )
|
||||
package_name="Anaconda-1.6.1-MacOSX-x86_64"
|
||||
package_url="http://repo.continuum.io/archive/Anaconda-1.6.1-MacOSX-x86_64.sh#4b60123e71864c447a0adc16398d5386"
|
||||
;;
|
||||
"Linux" )
|
||||
case "$(uname -m)" in
|
||||
"i386" | "i486" | "i586" | "i686" | "i786" )
|
||||
package_name="Anaconda-1.6.1-Linux-x86"
|
||||
package_url="http://repo.continuum.io/archive/Anaconda-1.6.1-Linux-x86.sh#06412ae8de02c87b8de7d7e6d35ed092"
|
||||
;;
|
||||
"x86_64" )
|
||||
package_name="Anaconda-1.6.1-Linux-x86_64"
|
||||
package_url="http://repo.continuum.io/archive/Anaconda-1.6.1-Linux-x86_64.sh#70a1294c01e3ab5925fc52f2603de159"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
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.6.1 is not available for $(uname -s)-$(uname -m)."
|
||||
} 1>&4 2>&1
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user