I\'m using Sublime Text 3 With Pylinter to run pylint on my files.
pylint
However, on the same machine, I work on files for both python 2, and python 3 project
You can try python2 -m pylint ... and python3 -m pylint .... That ensures that you use the right version.
python2 -m pylint ...
python3 -m pylint ...