INFO:Python2version:3.6.3 >
Why?
I have made neovim2 for py2 and neovim3 for py3 in virtualenv.
health#provider#check↲
========================================================================↲
## Clipboard (optional) ↲
- OK: Clipboard tool found: pbcopy ↲
↲
## Python 2 provider (optional) ↲
- OK: pyenv found: "/Users/okamura/dotfiles/.pyenv/libexec/pyenv" ↲
- INFO:Using:g:python_host_prog="~/.pyenv/versions/neovim2/bin/python" ↲
- INFO: Executable: /Users/okamura/.pyenv/versions/3.6.3/bin/python↲
- WARNING: Unexpected Python version. This could lead to confusing error messages.↲
- INFO: Python 2 version: 3.6.3 ↲
- INFO: python-neovim version: 0.2.0 ↲
- OK: Latest python-neovim is installed: 0.2.0 ↲
↲
## Python 3 provider (optional) ↲
- OK: pyenv found: "/Users/okamura/dotfiles/.pyenv/libexec/pyenv" ↲
- INFO:Using:g:python3_host_prog="~/.pyenv/versions/neovim3/bin/python" ↲
- INFO: Executable: /Users/okamura/.pyenv/versions/3.6.3/bin/python↲
- INFO: Python 3 version: 3.6.3 ↲
- INFO: python-neovim version: 0.2.0 ↲
- OK: Latest python-neovim is installed: 0.2.0 ↲
.config/nvim/init.vim
contains the following two lines:
letg: python_host_prog='~/.pyenv/versions/neovim2/bin/python' ↲
letg: python3_host_prog='~/.pyenv/versions/neovim3/bin/python'
Sorry, I solved myself. python_host_prog
is the full path and it's healed
health#provider#check↲
========================================================================↲
## Clipboard (optional) ↲
- OK: Clipboard tool found: pbcopy ↲
↲
## Python 2 provider (optional) ↲
- OK: pyenv found: "/Users/okamura/dotfiles/.pyenv/libexec/pyenv" ↲
- INFO:Using:g:python_host_prog="/Users/okamura/dotfiles/.pyenv/versions/neovim2/bin/python" ↲
- INFO: Executable: /Users/okamura/dotfiles/.pyenv/versions/neovim2/bin/python↲
- INFO: Python 2 version: 2.7.14 ↲
- INFO: python-neovim version: 0.2.0 ↲
- OK: Latest python-neovim is installed: 0.2.0 ↲
↲
## Python 3 provider (optional) ↲
- OK: pyenv found: "/Users/okamura/dotfiles/.pyenv/libexec/pyenv" ↲
- INFO:Using:g:python3_host_prog="/Users/okamura/dotfiles/.pyenv/versions/neovim3/bin/python" ↲
- INFO: Executable: /Users/okamura/dotfiles/.pyenv/versions/neovim3/bin/python↲
- INFO: Python 3 version: 3.6.3 ↲
- INFO: python-neovim version: 0.2.0 ↲
- OK: Latest python-neovim is installed: 0.2.0 ↲
© 2024 OneMinuteCode. All rights reserved.