mac zsh: command not found: pip解决方法
先下载:
curl https://bootstrap.pypa.io/pip/get-pip.py -o get-pip.py
安装get-pip
python3 get-pip.py
如果你输出的内容和我一样包含WARNING部分,说明pip虽然安装成功,但是还未加入环境变量,需要我们加入环境变量,我输出的路径是:
/Users/hb24795/Library/Python/3.8/bin
所以我执行:文章来源:https://www.toymoban.com/news/detail-589837.html
echo 'export PATH=/Users/hb24795/Library/Python/3.8/bin:$PATH' >>~/.bashrc
最后执行以下命令使文件生效文章来源地址https://www.toymoban.com/news/detail-589837.html
source ~/.bashrc
到了这里,关于Mac 系统:zsh: command not found: pip解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!