Add pyenv to extra_installers
This commit is contained in:
parent
609181273f
commit
2e697c38bf
|
@ -45,3 +45,14 @@ then
|
||||||
python3 -m pip install --user pipx
|
python3 -m pip install --user pipx
|
||||||
pipx ensurepath
|
pipx ensurepath
|
||||||
fi
|
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
|
||||||
|
|
Loading…
Reference in a new issue