Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
pip コマンドのインストール
% curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
pip コマンドの確認
% pip -V pip 9.0.1 from /usr/lib/python2.7/site-packages (python 2.7)
pylint のインストール
% sudo pip install pylint
vim を開いて、「:SyntasticInfo」を実行し、 最後が「pylint」になればOK
------------------------------ :SyntasticInfo ------------------------------ Syntastic version: 3.8.0-59 (Vim 704, Linux) Info for filetype: python Global mode: active Filetype python is active The current file will be checked automatically Available checkers: pylint python Currently enabled checker: pylint
.vimrc に以下を追加
" pylint : syntastic を使って、python の文法チェックを pylint で行う let g:syntastic_python_checkers = ['pylint']
[おまけ] pylint による syntastic の文法チェックを無効にする
let g:loaded_syntastic_python_pylint_checker = 0