I'm using Sublime Text 3 with Package Control
A few days ago I installed Pylint by Package Control
But it not work, and this alert dialog jumps out as long as I open Sublime Text 3
How can I fix it?
I'm using Sublime Text 3 with Package Control
A few days ago I installed Pylint by Package Control
But it not work, and this alert dialog jumps out as long as I open Sublime Text 3
How can I fix it?
According to the documentation of Pylinter, it specifically says:
** Pylint needs to be installed separately!!! **
So if you have only just installed the Pylinter package using the Sublime package manager, then you probably haven't installed Pylint. You can simply install it using pip (if you don't have pip installed check this out: How can I install pip on Windows?):
pip install pylint
or
pip3 install pylint
Once that's installed you may need to change the path value in the Pylinter configuration file so that it points to the correct path.