Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jedi-vim,在输入以下内容后,出现“找不到模式”错误:
import numpy numpy.
但是,如果我运行以下 python 脚本,我会得到一长串完成列表:
import jedi print(jedi.Script('import numpy;numpy.').completions())
由于jedi-vim可以成功完成其他包,我不确定是什么配置错误,什么给出?
我解决了这个问题。我使用的 vim 没有 python3 支持,所以 jedi 正在查看 python2.7 模块,因此没有 numpy。我重新安装了支持python3的vim,它解决了这个问题。