-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Make sure you link against python2 #2
Comments
Thanks for catching this; should be fixed now. |
Issue seems to be still present. python 2.7.3 is installed (also python3). vim is on version 7.3.754. ycm was build without semantic support for c family and worked very well. System is 64 bit Arch Linux 3.7.4-1. |
Same issue, set default python to alias to python2.7.3, still getting "YouCompleteMe unavailable: requires python 2.x"
|
@frankyjuang what is the output of vim --version? |
Add GoToImplemention to C# completer
Updated 5 minutes ago, and python/ycm/base.py and python/ycm/vimsupport.py still reference python instead of python2. |
Changing those shebangs would do nothing. In fact, we should remove them. There are only useful for the |
Could this be fixed for |
Closes ycm-core#2
On Archlinux the default python is 3.x and you need to use python2 to get 2.x. Also need to include from /usr/lib/python2.7 not /usr/lib/python3.3m. Interestingly the ycm_core module compiles and loads fine as Py3 but ycm.py won't as it uses Py2 syntax. The error message in vim for this case incorrectly suggests that a missing libclang.so is to blame.
The text was updated successfully, but these errors were encountered: