We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ecb0c commit 853cce9Copy full SHA for 853cce9
README.rst
@@ -24,11 +24,11 @@ It can be installed with::
24
Useful tips:
25
26
* Be sure to install it for a version of Python which is compatible
27
- with your codebase: for Python 2, ``pip2 install pyflakes`` and for
28
- Python3, ``pip3 install pyflakes``.
+ with your codebase: ``python#.# -m pip install pyflakes`` (for example,
+ ``python3.10 -m pip install pyflakes``)
29
30
-* You can also invoke Pyflakes with ``python3 -m pyflakes .`` or
31
- ``python2 -m pyflakes .`` if you have it installed for both versions.
+* You can also invoke Pyflakes with ``python#.# -m pyflakes .`` if you want
+ to run it for a specific python version.
32
33
* If you require more options and more flexibility, you could give a
34
look to Flake8_ too.
0 commit comments