flake8 not showing pyflakes errors
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve
Hello, Some hints to help you: you can list the dependencies and their versions flake8 --version you can try forcing the detection with flake8 --select E,F,W your_project_dir Or try also with Pyflakes directly ... pyflakes your_project_dir This is a good start. -- Florent 2014-07-01 20:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
Florent and Ian, Thanks for the quick reply. flake8 --version doesn't show pyflakes, so I guess it isn't getting detected. However, I can call pyflakes directly from the command line and it will detect errors. Thanks again, Steve
Hello,
Some hints to help you:
you can list the dependencies and their versions
flake8 --version
you can try forcing the detection with
flake8 --select E,F,W your_project_dir
Or try also with Pyflakes directly ...
pyflakes your_project_dir
This is a good start.
-- Florent
2014-07-01 20:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
I'm not a Windows user, however I think you can try to understand what happens with these questions. - is there 2 versions of Python (eg: python2 and python3) - where are flake8.exe and pyflakes.exe located? - if you run the python interpreter and "import pyflakes" and "import flake8", does it works? - how did you install flake8 and pyflakes? - did you check if pip and setuptools are up-to-date (pip install -U pip setuptools) Finally, you could try removing both and re-installing flake8 only (pip install flake8). -- Florent 2014-07-01 22:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Florent and Ian, Thanks for the quick reply. flake8 --version doesn't show pyflakes, so I guess it isn't getting detected. However, I can call pyflakes directly from the command line and it will detect errors. Thanks again, Steve
Hello,
Some hints to help you:
you can list the dependencies and their versions
flake8 --version
you can try forcing the detection with
flake8 --select E,F,W your_project_dir
Or try also with Pyflakes directly ...
pyflakes your_project_dir
This is a good start.
-- Florent
2014-07-01 20:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
I got it working. I uninstalled using conda and reinstalled using pip. I'm still not sure if the problem was just a botched install or if there is something strange with the conda package, but at least it's working. Thanks for all your help everyone! Best Steve ________________________________________ From: Florent <florent.xicluna@gmail.com> Sent: Tuesday, July 1, 2014 4:43 PM To: Steven Tilley Cc: code-quality@python.org Subject: Re: [code-quality] flake8 not showing pyflakes errors I'm not a Windows user, however I think you can try to understand what happens with these questions. - is there 2 versions of Python (eg: python2 and python3) - where are flake8.exe and pyflakes.exe located? - if you run the python interpreter and "import pyflakes" and "import flake8", does it works? - how did you install flake8 and pyflakes? - did you check if pip and setuptools are up-to-date (pip install -U pip setuptools) Finally, you could try removing both and re-installing flake8 only (pip install flake8). -- Florent 2014-07-01 22:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Florent and Ian, Thanks for the quick reply. flake8 --version doesn't show pyflakes, so I guess it isn't getting detected. However, I can call pyflakes directly from the command line and it will detect errors. Thanks again, Steve
Hello,
Some hints to help you:
you can list the dependencies and their versions
flake8 --version
you can try forcing the detection with
flake8 --select E,F,W your_project_dir
Or try also with Pyflakes directly ...
pyflakes your_project_dir
This is a good start.
-- Florent
2014-07-01 20:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
Hm, I wonder if conda respects the entry_points registered in flake8's entry_points for PyFlakes (https://bitbucket.org/tarek/flake8/src/91696afa10b21297a7889af3b383921890d11...). I will try to investigate that this weekend. On Wed, Jul 2, 2014 at 8:33 AM, Steven Tilley <stilley2@jhmi.edu> wrote:
I got it working. I uninstalled using conda and reinstalled using pip. I'm still not sure if the problem was just a botched install or if there is something strange with the conda package, but at least it's working. Thanks for all your help everyone! Best Steve ________________________________________ From: Florent <florent.xicluna@gmail.com> Sent: Tuesday, July 1, 2014 4:43 PM To: Steven Tilley Cc: code-quality@python.org Subject: Re: [code-quality] flake8 not showing pyflakes errors
I'm not a Windows user, however I think you can try to understand what happens with these questions.
- is there 2 versions of Python (eg: python2 and python3) - where are flake8.exe and pyflakes.exe located? - if you run the python interpreter and "import pyflakes" and "import flake8", does it works? - how did you install flake8 and pyflakes? - did you check if pip and setuptools are up-to-date (pip install -U pip setuptools)
Finally, you could try removing both and re-installing flake8 only (pip install flake8).
-- Florent
2014-07-01 22:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Florent and Ian, Thanks for the quick reply. flake8 --version doesn't show pyflakes, so I guess it isn't getting detected. However, I can call pyflakes directly from the command line and it will detect errors. Thanks again, Steve
Hello,
Some hints to help you:
you can list the dependencies and their versions
flake8 --version
you can try forcing the detection with
flake8 --select E,F,W your_project_dir
Or try also with Pyflakes directly ...
pyflakes your_project_dir
This is a good start.
-- Florent
2014-07-01 20:33 GMT+02:00 Steven Tilley II <stilley2@jhmi.edu>:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
Do you see output when you run `pyflakes path/to/files`? On Tue, Jul 1, 2014 at 1:33 PM, Steven Tilley II <stilley2@jhmi.edu> wrote:
Flake8 devs, I have been having a problem with flake8 not finding pyflakes errors on windows. I was wondering how I can go about debugging this issue. Thanks Steve _______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
participants (4)
-
Florent
-
Ian Cordasco
-
Steven Tilley
-
Steven Tilley II