Add pyenv to extra_installers

This commit is contained in:
Evie Litherland-Smith 2023-01-16 13:31:41 +00:00
parent 609181273f
commit 2e697c38bf

View file

@ -45,3 +45,14 @@ then
python3 -m pip install --user pipx
pipx ensurepath
fi
# pyenv
if [ ! which -a pyenv > /dev/null ]
then
curl https://pyenv.run | bash
# Below are suggested dependencies for python
# 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
fi