I want to run python code in Microsoft Visual Studio Code but it gives an error:
\"Linter pylint is not installed\"
I installed:
The following fix works for me. Ubuntu 16 terminal type:
$ pip3 install pylint
$ sudo apt install python3-pip
if your python3 is installed in the /usr/bin/python3.6, run the following command, and it should work fine. Last, make sure your VS-code is running python3 interpreter not python2.7 which is default in Ubuntu.
$ /usr/bin/python3.6 -m pip install -U pylint