setup stuff

This commit is contained in:
Tyrel Souza 2023-11-17 13:16:16 -05:00
parent 227e638686
commit 2e6fa622d2
No known key found for this signature in database
GPG Key ID: A7042C28F86F5183
1 changed files with 4 additions and 1 deletions

View File

@ -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