mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
ad8807543b
The original 2.3 portable version was compiled on Ubuntu 20.04 and didn't work with older glibc. This has been fixed and the older file has been deleted so hopefully this change is acceptable.
19 lines
632 B
Groff
19 lines
632 B
Groff
echo
|
|
colorize 1 "WARNING"
|
|
echo ": Pyston only runs on x86_64 platforms, and only has been tested on Ubuntu"
|
|
echo "so, your mileage may vary with other Linux distributions."
|
|
echo
|
|
|
|
case "$(pyston_architecture 2>/dev/null || true)" in
|
|
"linux64" )
|
|
install_package "pyston_2.3" "https://github.com/pyston/pyston/releases/download/v2.3/pyston_2.3_portable-v2.tar.gz#90185e29e4a1a19562c095f2bb4e81a5d0715150fa10eca363ec1188b5ba7ee7" "pyston" verify_py38 get_pip
|
|
;;
|
|
* )
|
|
{ echo
|
|
colorize 1 "ERROR"
|
|
echo ": A Pyston 2.3 binary is not available for $(pyston_architecture 2>/dev/null || true)."
|
|
echo
|
|
} >&2
|
|
exit 1
|
|
;;
|
|
esac
|