pythonic-emacs/pyenv-mode

pyenv-mode: pyenv executable not found

Closed this issue · 1 comments

Hi folks,

I have pyenv installed and in my PATH:
$ which pyenv
~/.pyenv/bin/pyenv

but I still get this error in the minibuffer when trying to load (pyenv-mode) in my ~/.emacs.d/init.el file:

pyenv-mode: pyenv executable not found

Suggestions?

Fixed it. Thanks to the EmacsWiki entry on ExecPath

I added this to my ~/.emacs.d/init.el file:

(setq exec-path (append exec-path '("~/.pyenv/bin")))