12 lines
417 B
Bash
Executable file
12 lines
417 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
command -v pyenv > /dev/null && exit 0
|
|
curl https://pyenv.run | bash
|
|
# Below are suggested dependencies for python
|
|
# command -v apt > /dev/null && {
|
|
# sudo apt update
|
|
# sudo apt install build-essential libssl-dev zlib1g-dev \
|
|
# libbz2-dev libreadline-dev libsqlite3-dev curl llvm \
|
|
# libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
|
|
# }
|