I have imported a git project into Eclipse and I want to enable PyDev\Code Analysis\Pep8 but it doesn't seem to work... I suppose it is because its a git project and not a project in the eclipse's workspace.. How can I make Pep8 code analysis work?
-
Do you get an error message?looper– looper2012年11月30日 09:33:56 +00:00Commented Nov 30, 2012 at 9:33
-
No, I don't get anything. I suppose if it was working, warnings and errors would appear, but instead nothing happens...d3m– d3m2012年11月30日 09:35:48 +00:00Commented Nov 30, 2012 at 9:35
2 Answers 2
Try right click on the folder of cloned folder in Eclipse PyDev -> Set as source Folder Is becomes real eclipse project.
Comments
The reason for that is that PyDev will only do code-analysis on files which are under source folders (i.e.: in the project PYTHONPATH).
Please, read the Getting Started manual: http://www.pydev.org/manual_101_root.html which has a step-by-step on how to properly configure PyDev so that it works properly for you.