在Visual Studio代码中,我得到了错误:
[pylint]无法从Controllers.InterferenceGraph导入
代码行是
from Controllers.InterferenceGraph import InterferenceGraph
文件InterferenceGraph.py
与出现错误的行在同一目录中。如何配置pylint在当前目录中查找或在多个目录中查找?
答案 0 :(得分:0)
如果使用的是pylint,则可以告诉pylint在哪里寻找进口。如果您的主目录中还没有文件,则需要创建一个.pylintrc
文件。并添加以下行:
[MASTER]
init-hook='import sys; sys.path.append("/path/to/repo")'
其中/path/to/repo
是保存文件的目录的绝对路径。