Files
oh-my-bash/plugins/pyenv/pyenv.plugin.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
203 B
Bash
Raw Normal View History

#! bash oh-my-bash.module
2021-12-14 20:26:40 -05:00
# @chopnico 2021
if [ -d ~/.pyenv ]; then
export PYENV_ROOT=~/.pyenv
export PATH=$PYENV_ROOT/bin${PATH:+:$PATH}
eval -- "$(pyenv init --path)"
eval -- "$(pyenv init -)"
2021-12-14 20:26:40 -05:00
fi