Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
0aa645f8
Unverified
Commit
0aa645f8
authored
May 15, 2018
by
Marc Cornellà
Committed by
GitHub
May 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pyenv: search the pyenv command if not found (#6811)
parent
2b7a41b0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
pyenv.plugin.zsh
plugins/pyenv/pyenv.plugin.zsh
+25
-1
No files found.
plugins/pyenv/pyenv.plugin.zsh
View file @
0aa645f8
# This plugin loads pyenv into the current shell and provides prompt info via
# This plugin loads pyenv into the current shell and provides prompt info via
# the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available.
# the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available.
if
((
$+
commands[pyenv]
))
;
then
FOUND_PYENV
=
$+
commands[pyenv]
if
[[
$FOUND_PYENV
-ne
1
]]
;
then
pyenvdirs
=(
"
$HOME
/.pyenv"
"/usr/local/pyenv"
"/opt/pyenv"
)
for
dir
in
$pyenvdirs
;
do
if
[[
-d
$dir
/bin
]]
;
then
export
PATH
=
"
$PATH
:
$dir
/bin"
FOUND_PYENV
=
1
break
fi
done
fi
if
[[
$FOUND_PYENV
-ne
1
]]
;
then
if
((
$+
commands[brew]
))
&&
dir
=
$(
brew
--prefix
pyenv 2>/dev/null
)
;
then
if
[[
-d
$dir
/bin
]]
;
then
export
PATH
=
"
$PATH
:
$dir
/bin"
FOUND_PYENV
=
1
fi
fi
fi
if
[[
$FOUND_PYENV
-eq
1
]]
;
then
eval
"
$(
pyenv init - zsh
)
"
eval
"
$(
pyenv init - zsh
)
"
if
((
$+
commands[pyenv-virtualenv-init]
))
;
then
if
((
$+
commands[pyenv-virtualenv-init]
))
;
then
eval
"
$(
pyenv virtualenv-init - zsh
)
"
eval
"
$(
pyenv virtualenv-init - zsh
)
"
...
@@ -15,3 +37,5 @@ else
...
@@ -15,3 +37,5 @@ else
echo
"system:
$(
python
-V
2>&1 |
cut
-f
2
-d
' '
)
"
echo
"system:
$(
python
-V
2>&1 |
cut
-f
2
-d
' '
)
"
}
}
fi
fi
unset
FOUND_PYENV
dir
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment