We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 294f64f commit 9c23313Copy full SHA for 9c23313
bin/pyenv-virtualenv
@@ -139,7 +139,7 @@ detect_venv() {
139
# Check the existence of executables as a workaround for the issue with pyenv-which-ext
140
# https://github.com/yyuu/pyenv-virtualenv/issues/26
141
local prefix="$(pyenv-prefix)"
142
- if [ -x "${prefix}/bin/conda" ]; then
+ if [ -d "${prefix}/conda-meta" ] || [ -x "${prefix}/bin/conda" ]; then
143
HAS_CONDA=1
144
else
145
if [ -x "${prefix}/bin/virtualenv" ]; then
0 commit comments