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
<イグ
関連
-
TypeErrorの解決策:Unicodeエラーへの強制力
-
Pythonコードのデバッグ問題:IOError: イメージファイルを識別できない
-
[Python] error could not broadcast input array from shape (26) into shape (26,1)
-
python で word, excel, csv, json ファイルの読み書きをする。
-
AttributeError: 'function' オブジェクトに 'split' 属性がない Solution
-
ModuleNotFoundError: ConfigParser' という名前のモジュールはありません。
-
Pythonエラー解決] 'urllib2'という名前のモジュールがない解決方法
-
TypeError: 'builtin_function_or_method' オブジェクトには '__getitem__' という属性がありません。
-
Selenium issue IOError: [Errno 2] そのようなファイルまたはディレクトリがありません: 'nul'
-
Pythonです。AttributeError: module 'numpy' has no attribute 'dtype' 問題が解決されました。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ユニコード・オブジェクトは、ハッシュ・エラーの解決前にエンコードする必要があります。
-
PythonがNameError: name '_name_' is not definedのようなエラーを発生させる。
-
Python がエラー xxx.whl はこのプラットフォームでサポートされているホイールではありませんと報告します。
-
Python仮想環境のインストールと設定
-
[コード】pygame 学習
-
TypeError: 'dict_keys' オブジェクトはインデックス作成をサポートしていません。
-
Python プロンプト。TypeError: 'NoneType' オブジェクトは呼び出し可能なソリューションではありません。
-
TypeError: 'str' と 'int' のインスタンスの間で '<' はサポートされていません。
-
Python - pickleファイルの異なるPython環境への変換
-
numpyのconcatenate関数