Windows10 でpython3.6.2 をインストール済みです。
pipのバージョンは9.0.1です。
VisualStudioCode 1.18.1 でPythonの開発を行おうとしたのですが、Linter Plint is not installedと表示されます。
これが何度も出てしまうのです
VisualStudioCodeでターミナルを開いて、パワーシェルからpip install pylint を実行しましたが、以下のように既にインストールされているように見えます。
powershell
PS C:\Users\username\python\py_sample01> pip install pylint Requirement already satisfied: pylint in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages Requirement already satisfied: isort>=4.2.5 in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) Requirement already satisfied: six in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) Requirement already satisfied: mccabe in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) Requirement already satisfied: colorama; sys_platform == "win32" in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) Requirement already satisfied: astroid>=1.5.1 in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) Requirement already satisfied: lazy-object-proxy in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from astroid>=1.5.1->pylint) Requirement already satisfied: wrapt in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from astroid>=1.5.1->pylint)
設定を変更すればいいのかと, にpython.linting.pylintPath にpylintのパスを指定してみましたが、意味はありませんでした。
python
"python.linting.pylintPath": "C:/Users/username/AppData/Local/Programs/Python/Python36-32/Scripts/pylint.exe"
文法のチェックは行いたいのでpylintは必要だと思っています。
どうすればいいでしょうか?
まだ回答がついていません
会員登録して回答してみよう