2

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

pylint not found at "lint.py"

How can I fix it?

CuGBabyBeaR
  • 183
  • 3
  • 12

1 Answers1

4

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 do I install pip on Windows?):

pip 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.

Community
  • 1
  • 1
John Meikle
  • 111
  • 3
  • 1
    Oh, I find what's going on. I got Python 3.3 and Python 2.7 in same time. and I forget install pylint in Python 3.3 – CuGBabyBeaR Sep 08 '13 at 04:02