Visual Studio Code运行Python文件出现 “Linter pylint is not installed ”提示解决办法

运行Python代码后出现 “Linter pylint is not installed ”提示

只需要添加一行代码就可以解决  

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

界面设置如下图:

猜你喜欢

转载自www.cnblogs.com/kadycui/p/9069836.html