4
4

More than 3 years have passed since last update.

pip install ○○○でエラー Command errored out with exit status 1:

Posted at

実行コマンド

$ pip install ○○○

エラー内容

Command errored out with exit status 1:
...
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

解決策1

$ pip3 install ○○○

解決策2

〜/.bashrcに下記のエイリアスを追加する。

alias pip=pip3

ターミナルを再起動してbashrcを再読み込み後

$ pip install ○○○
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4