12 lines
417 B
Bash
12 lines
417 B
Bash
|
#! /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
|
||
|
# }
|