$ 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.
$ pip3 install ○○○
Add the following alias to ~ / .bashrc.
alias pip=pip3
After restarting the terminal and reloading bashrc
$ pip install ○○○
Recommended Posts