1. ホーム
  2. パイソン

Ubuntu pip AttributeError: 'module' オブジェクトに '_main' 属性がない。

2022-02-10 09:20:34

Ubuntuでpipを使用してpythonライブラリをインストールすると、'module' object has no attribute '_main'というエラーが報告される場合があります。

これはpip10.0にmain()がないためで、pipを元のバージョンにダウングレードする必要があります。

// You can view the current python version
$ python -V

// Modify the "/usr/bin/pip2" file by changing the first line in the file from "#! /usr/bin/python" to "#! /usr/bin/python2".
$ sudo vim /usr/bin/pip2
// Use pip2 to download
$ pip2 install xxxxx

<イグ

// Modify the "/usr/bin/pip2" file by changing the first line in the file from "#! /usr/bin/python" to "#! /usr/bin/python2".
$ sudo vim /usr/bin/pip2

<イグ

// Use pip2 to download
$ pip2 install xxxxx

<イグ