Windows10 でpython3.6.2 をインストール済みです。
pipのバージョンは9.0.1です。
VisualStudioCode 1.18.1 でPythonの開発を行おうとしたのですが、Linter Plint is not installedと表示されます。
これが何度も出てしまうのです
VisualStudioCodeでターミナルを開いて、パワーシェルからpip install pylint を実行しましたが、以下のように既にインストールされているように見えます。
powershell
1PS C:\Users\username\python\py_sample01> pip install pylint 2Requirement already satisfied: pylint in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages 3Requirement already satisfied: isort>=4.2.5 in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) 4Requirement already satisfied: six in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) 5Requirement already satisfied: mccabe in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) 6Requirement already satisfied: colorama; sys_platform == "win32" in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) 7Requirement already satisfied: astroid>=1.5.1 in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from pylint) 8Requirement already satisfied: lazy-object-proxy in c:\users\username\appdata\local\programs\python\python36-32\lib\site-packages (from astroid>=1.5.1->pylint) 9Requirement 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
1"python.linting.pylintPath": "C:/Users/username/AppData/Local/Programs/Python/Python36-32/Scripts/pylint.exe"
文法のチェックは行いたいのでpylintは必要だと思っています。
どうすればいいでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/12/08 10:11