dotfiles/shell/pyenv

10 lines
181 B
Bash
Executable file

# pyenv
if test -d "$HOME/.pyenv/bin"; then
PATH="$HOME/.pyenv/bin:$PATH"
fi
if command -v pyenv 2>&1 >/dev/null; then
eval "$(pyenv init -)"
fi
export PATH
# vim: ft=bash