15 lines
347 B
Bash
Executable file
15 lines
347 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Usage: curl https://pyenv.run | bash
|
|
#
|
|
# For more info, visit: https://github.com/pyenv/pyenv-installer
|
|
#
|
|
index_main() {
|
|
set -e
|
|
curl -s -S -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
|
|
}
|
|
|
|
index_main
|
|
echo "suggested install to build python:\
|
|
base-devel openssl zlib xz tk"
|