nixos/packages/pyenv.sh

14 lines
346 B
Bash
Raw Normal View History

#!/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
2023-03-05 22:23:32 +00:00
echo "suggested install to build python: base-devel openssl zlib xz tk"
}
index_main