-
Notifications
You must be signed in to change notification settings - Fork 308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python error after installation #574
Comments
Just in case it helps you my clumsy fix, my installation didn't like python2 neither, so I manually edited the clang_complete.vim file to force python3. " if has('python')
" let s:py_cmd = 'python'
" let s:pyfile_cmd = 'pyfile'
" elseif has('python3')
let s:py_cmd = 'python3'
let s:pyfile_cmd = 'py3file'
" endif From your error I guess your file to edit is in |
Have encountered the same. Any guess to fix? |
I would guess #581 should fix this. |
@xaizek it should fix it, same issue I had. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I'm trying to install the plugin, but after setting up the
clang_library_path
, neovim outputs the following error:Am I missing any additional step after the installation? I would appreciate any guidance. Thanks in advance.
The text was updated successfully, but these errors were encountered: