我正在neovim中使用coc.nvim IntelliSense引擎以及Python linter Pylint。从Python 2.7升级到3.8之后, pylint没有看到我安装的模块。
我用pip3 install pylint
安装了pylint,并使用vim命令:CocInstall coc-python
将其链接到coc。在升级到Python 3.8之前,它可以完美地工作。
如果我现在尝试导入例如numpy
import numpy as np
coc显示错误消息
[pylint E0401] [E] Unable to import 'numpy' (import-error)
运行代码不会导致任何错误,因此Python或numpy不应出现此问题。另外,coc可以在其他文件类型(例如JS或LaTeX)中正常工作,因此必须在未为Python 3.8配置Pylint的情况下进行某些操作。
有人知道如何解决此问题吗?