mirror of
https://github.com/pyenv/pyenv.git
synced 2025-05-03 07:09:24 +00:00
This one gets rid of the extra "usr" subdirectory that we had and now fits the format that pyenv expects
19 lines
646 B
Groff
19 lines
646 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.1" "https://github.com/pyston/pyston/releases/download/pyston_2.3.1/pyston_2.3.1_portable_v2.tar.gz#4e16df1eaf5f226c0629f2db1e63033454c94cb9e29f50154177819662df5b15" "pyston" verify_py38 get_pip
|
|
;;
|
|
* )
|
|
{ echo
|
|
colorize 1 "ERROR"
|
|
echo ": A Pyston 2.3.1 binary is not available for $(pyston_architecture 2>/dev/null || true)."
|
|
echo
|
|
} >&2
|
|
exit 1
|
|
;;
|
|
esac
|