From 2e6fa622d2d01967ef5c6a45e28dde6ad3e31dc0 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Fri, 17 Nov 2023 13:16:16 -0500 Subject: [PATCH] setup stuff --- setup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 0209866..fc41cb5 100755 --- a/setup.sh +++ b/setup.sh @@ -21,7 +21,10 @@ ln -s $(pwd)/home/shell_funcs /home/coder/.shell_funcs echo 'export PYENV_ROOT="/home/coder/.pyenv"' >> /home/coder/.bashrc echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> /home/coder/.bashrc echo 'eval "$(pyenv init -)"' >> /home/coder/.bashrc -source ~/.bashrc + +export PYENV_ROOT="$HOME/.pyenv" +[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init -)" pyenv install 3.10.13 pyenv global 3.10.13