python - Linter pylint is not installed -


i want run python code in microsoft visual code gives error

"linter pylint not installed"

i installed

python extension
python3
anaconda

  1. open terminal (ctrl+~)
  2. run command pip install pylint

if doesn't work: on off chance you've configured non-default python path editor, you'll need match python's install location pip executable you're calling terminal.

this issue because python extension's settings enable pylint default. if you'd rather turn off linting, can instead change setting true false in user or workspace settings:

"python.linting.pylintenabled": false 

Comments