欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vs code 经常弹出Linter pylint is not installed.

程序员文章站 2022-05-01 21:51:37
...

参考:https://www.cnblogs.com/kadycui/p/9069836.html

问题描述:vs code 经常弹出Linter pylint is not installed.,明明点了一次又一次install,还是弹出问是否要安装。。

运行Python代码后出现 “Linter pylint is not installed ”提示,
只需要添加一行代码就可以解决!!!

1 {
2     "python.pythonPath": "/usr/local/bin/python3",
3     "python.linting.enabled":false               //添加这行代码
4 }

界面设置如下图:
vs code 经常弹出Linter pylint is not installed.
在点击右下角弹出的“Linter pylint is not installed.”下的install
vs code 经常弹出Linter pylint is not installed.
成功!!