我正在使用Ubuntu 16.04,我需要使用Visual Code进行Python编码。 我从GIT获得的工作空间包含“ common”,“ reports”等文件夹,这些文件夹用于其他.py文件的导入中。
from common import core
Visual Code具有一个包含linter的Python扩展(由Microsoft,2019.4.12954提供)。
短绒棉在进口中发现很多问题
Unable to import "common"
我当时认为可以通过PYTHONPATH更改(在.vscode / setting.json中)解决。
"python.pythonPath": "python:/path/to/my/worspace/lib"
但是它使代码失去了Python linter
"Linter pylint is not installed" (IDE's notification)
有人可以帮助我配置Visual Code和pylint吗? 非常感谢!