Pylint in Sublime Text 3 constantly pop a alert dialog: pylint not found at "lint.py"

StackOverflow https://stackoverflow.com/questions/18679942

  •  28-06-2022
  •  | 
  •  

Вопрос

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?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top