3

当我在 Eclipse 编辑器中编写违反 pep8 的 python 代码时,我想得到警告。据我所见,设置显示它应该运行 pep8。(下面是我的 pydev 设置的屏幕截图)。我努力了:

  • 验证它是否指向 pep8.py 的正确位置
  • 在错误和警告之间切换
  • 检查和取消选中“将 pep8 输出重定向到控制台”

在此处输入图像描述

关于如何让 pep8 在 Eclipse 中为我工作的任何建议或意见,我将不胜感激。

4

3 回答 3

1

I think that you have to actively run pep8 tests when you are ready - not sure where it is hidden in the menus or if there is a keyboard short cut - try looking under 'Tools' in the menus.

The other possibility is that you may not have pep8 correctly installed where it is indicated - try copying the path from the above into a command prompt and seeing if it runs with a sample .py file and does not error. If it doesn't you should be able to install the pep8 checker from pypi under your current python installation and then point eclipse to it.

于 2013-07-31T16:23:56.233 回答
0

检查选项下的“执行代码分析”是否被选中。

选项

于 2015-10-08T06:45:32.120 回答
0

根据Fabio 的回答,在项目的属性中,将包文件夹添加到PYTHONPATH,如果仍然无法正常工作,还要重新启动 Eclipse。

您还可以在 Eclipse 中使用最新版本的pep8as 。External Tool有关详细信息,请参阅Dmitry 的回答

于 2016-10-04T20:38:54.087 回答