​pip: command not found​

原因是没有安装pip

①下载pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

②安装pip

sudo python3 get-pip.py
​注意:​​python 默认使用的可能是python2.x,不支持 pip,所以需要使用python3安装

pip: command not found_shell