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.
我正在尝试将模块添加到我的 Pylint 路径中,以便可以使用此问题中看到的解决方案来导入它们。不幸的是,我希望在使用此解决方案后可以导入的模块似乎仍然不存在。我想检查我尝试添加到 Pylint 的路径是否实际添加。有没有一种简单的方法可以打印出 Pylint 的 sys.path?非常感谢!
Pylint 应该PYTHONPATH以与 Python 解释器相同的方式使用。如果不是,它可能被视为一个错误并被报告为这样。
PYTHONPATH
您可能想pylint --init-hook 'print(sys.path)'在首先显示其 Python 路径时尝试运行 pylint。
pylint --init-hook 'print(sys.path)'