mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-24 02:40:17 +00:00
6 lines
151 B
Bash
6 lines
151 B
Bash
if iscmd pyenv; then
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
|
|
eval "$(pyenv init -)"
|
|
fi
|
|
|