VSCode에서 Python3을 사용하고자 할 경우, pylint가 설치 중에 에러가 나서 제대로 안될 경우가 있는데, 먼저 setuptools(혹은 추가로 wheel를 해야할 경우)과 같이 해준다.


$ sudo pip3 install --upgrade setuptools wheel


그리고 나서 pylint를 하면 된다.


$ python3 -m pip install -U pylint --user


+ Recent posts