Getting this error on startup.
Using Python version 3 to access Jedi.
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3
3.8.2 (v3.8.2:7b3ab5921f, Feb 24 2020, 17:52:18), [Clang 6.0 (clang-600.0.57)]
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site.py
omnifunc=python3complete#Complete
Last set from /usr/local/Cellar/neovim/0.4.3/share/nvim/runtime/ftplugin/python.vim line 41
completeopt=menuone,longest,preview
Last set from ~/.vim/plugged/jedi-vim/plugin/jedi.vim line 36
Press ENTER or type command to continue
This is a broken jedi installation. Please remove it properly and reinstall it.
@davidhalter actually a bronken vim-jedi instalation.
Removed and install jedi, got same error.
Commented, PlugClean, Uncoment, PlugInstall
Solved.
Thank you for the tip
cd ~/.vim/bundle/jedi-vim
find -iname '*.pyc' -exec rm {} \;
happy fun.
I had the same issue.
cd ~/.vim/bundle/jedi-vim
find -iname '*.pyc' -exec rm {} ;happy fun.
Thanks @linzhanyu
Thanks @linzhanyu
Although I had to add a \
to make it work in a bash shell:
find -iname '*.pyc' -exec rm {} \;
Otherwise I would get the error message: find: missing argument to -exec
cd ~/.vim/bundle/jedi-vim
find -iname '*.pyc' -exec rm {} ;happy fun.
for some odd reason, when i type in the command i get this issue. please help !
find: illegal option -- i
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
@dontepalmer i had the same issue and tried this command and it worked
find . -type f -iname '*.pyc' -exec rm {} \;
Most helpful comment
@davidhalter actually a bronken vim-jedi instalation.
Removed and install jedi, got same error.
Commented, PlugClean, Uncoment, PlugInstall
Solved.
Thank you for the tip