Sublime Text 报“Pylinter could not automatically determined the path to lint.py

Pylinter could not automatically determined the path to lint.py. please provide one in the settings file using the pylint_path variable

这是报错的英文,大概意思是说pylinter不能自动找到lint.py的路径,请设置文件中提供的pylint_path路径变量的值

 

安装了pylinter之后报这个错误,

解决方法如下:

首先从https://pypi.python.org/pypi/pylint 下载pylint 解压至D盘或者其他盘符均可以

然后打开sublime text 找到,如下图设置

接着找到pylint_path这个变量的设置你可以看到此时值为null

然后设置你刚才下载的文件解压后的路径即可,我这里是放置到我的python路径lib下了,根据你的自己的情况设置路径

然后保存,下次打开OK了,不报错了,问题解决了

原文地址:https://www.cnblogs.com/ching2009/p/5104463.html