Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

YouCompleteme unavailable : no module named future

Tags:

vim

vim-plugin

i am trying to install the YouCompleteMe Plugin in vim using Vundle but i get this error message : YouCompleteme unavailable : no module named future

i have vim 7.4.1910 and python 3.5.2 but i don't know if vim was built to support python3

like image 892
Kadhem Ouerghi Avatar asked Aug 05 '16 13:08

Kadhem Ouerghi


2 Answers

its that your modules are not updated or future module is not found. to fix this. if you are using ubuntu then first go to

$ cd ~/.vim/bundle/YouCompleteMe && git submodule update --init --recursive

this will update all the modules in youcompleteme

like image 188
zabusa Avatar answered Oct 01 '22 08:10

zabusa


I had the same issue and fixed it by running pip install future. You may have to do this with sudo.

like image 25
pandita Avatar answered Oct 01 '22 09:10

pandita