##実行コマンド
$ 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 ○○○