web-dev-qa-db-ja.com

python2.7用のpylintをインストールするにはどうすればよいですか?

私はubuntu18.04にあるpython2.7のpylintをインストールしようとしましたが、次の単語でエラーが発生します。

pip install pylint                                  
Collecting pylint
  Using cached https://pypi.tuna.tsinghua.edu.cn/packages/04/1f/1d3929051b45c3e4015178c5fe5bbee735fb4e362e0fc4f0fbf3f68647ad/pylint-2.1.1.tar.gz
pylint requires Python '>=3.4.*' but the running Python is 2.7.15

私はpip3python3.6のpylintを正常にインストールしました。

では、どうすればpython2.7用のpylintをインストールできますか?

4
Hatsune

pylintは、おそらく来年かそこらまでPython 2のサポートを維持します。ただし、1.9.Xの代わりに2.Xをインストールする必要があります。すでにpylintがインストールされているようです。 、アンインストールすると、代わりに1.9を取得できるはずです。

6
PCManticore