1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-09 03:53:48 -05:00

Add miniconda latest

This commit is contained in:
Yamashita, Yuu
2015-12-23 07:54:47 +00:00
parent c678bb1eaa
commit 046f5bde02
15 changed files with 83 additions and 12 deletions

View File

@@ -957,7 +957,9 @@ anaconda_architecture() {
"Darwin" ) echo "MacOSX-x86_64" ;;
"Linux" )
case "$(uname -m)" in
"armv7l" ) echo "Linux-armv7l" ;;
"i386" | "i486" | "i586" | "i686" | "i786" ) echo "Linux-x86" ;;
"ppc64le" ) echo "Linux-ppc64le" ;;
"x86_64" ) echo "Linux-x86_64" ;;
* ) return 1 ;;
esac