mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
10 lines
181 B
Bash
Executable file
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
|