AttributeError: モジュール 'pip' には 'main' という属性がありません。
2022-02-10 11:48:53
から取得した。 https://www.cnblogs.com/Fordestiny/p/8901100.html
モジュール 'pip' には 'main' という属性がありません。これを解決するには、インストールディレクトリにある helpers/packaging_tool.py ファイルを探し、このコードを次のように置き換えます。
def do_install(pkgs):
try:
# import pip
try:
from pip._internal import main
except:
from pip import main
except ImportError:
error_no_pip()
return main(['install'] + pkgs)
def do_uninstall(pkgs):
try:
# import pip
try:
from pip._internal import main
except:
from pip import main
except ImportError:
error_no_pip()
return main(['uninstall', '-y'] + pkgs)
ローカルのpipのインストールに失敗した場合、pycharmで適切なライブラリをインストールし、モジュール'pip'に属性'main'がない場合、上記の方法で問題を解決することができます。
関連
-
python error TypeError: 'bool' object is not subscriptable
-
concat を使用して 2 つのデータフレームを結合する際のエラー
-
[Python] error could not broadcast input array from shape (26) into shape (26,1)
-
PythonのエラーNo module named 'pkg_resources' を解決する。
-
AttributeError: モジュール 'time' には属性 'clock' がありません。
-
Python3ダウンロードファイルです。AttributeError:モジュール 'urllib' には 'request' という属性がありません。
-
Python27 PILソリューションという名前のモジュールがない
-
妖精が跳ねるのを見たことがありますか?pythonで小さな妖精のコードバウンス動画を作ろう
-
[Pythonノート】spyderのClearコマンド
-
Pythonモジュールの簡単な説明(とても詳しいです!)。
最新
-
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 は '' で '__main__' モジュールを見つけることができません。
-
Solve 'DataFrame' オブジェクトに 'sort' 属性がない。
-
TypeError: 'builtin_function_or_method' オブジェクトは反復可能ではありません。
-
TypeError: 'dict_keys' オブジェクトはインデックス作成をサポートしていません。
-
'dict_items' オブジェクトは添え字を付けることができません。
-
Anaconda 詳細インストールおよび使用チュートリアル(画像付き)
-
Pythonソケットプログラミング [WinError 10061] ターゲットコンピュータがアクティブに拒否しているため、接続できない。
-
Python ネットワークリクエストのエラー "ConnectionRefusedError: [WinError 10061] ターゲットコンピュータがアクティブに拒否したため接続できません"
-
Pythonのselfの使い方を詳しく、または常にプロンプトを表示します。TypeError: add() missing 1 required positional argument: 'self' 問題は解決されました。
-
AttributeError: 'dict' オブジェクトには 'iteritems' という属性がありません。