如何在Visual Studio代码中配置pylint以在项目目录中搜索模块

时间:2018-12-14 12:40:02

标签: python visual-studio-code pylint

在Visual Studio代码中,我得到了错误:

  

[pylint]无法从Controllers.InterferenceGraph导入

代码行是

from Controllers.InterferenceGraph import InterferenceGraph

文件InterferenceGraph.py与出现错误的行在同一目录中。如何配置pylint在当前目录中查找或在多个目录中查找?

1 个答案:

答案 0 :(得分:0)

如果使用的是pylint,则可以告诉pylint在哪里寻找进口。如果您的主目录中还没有文件,则需要创建一个.pylintrc文件。并添加以下行:

[MASTER]
init-hook='import sys; sys.path.append("/path/to/repo")'

其中/path/to/repo是保存文件的目录的绝对路径。