MacOS 底下Python 混乱

MacOS 底下Python2 Python 3 和安装homebrew后的python 交织在一起,一团混乱。经常安装了package后调用的时候显示没有安装。首先在 ~/.zshrc 文件里声明一下python命令的指向。(其实没啥用)修改后再 source ~/.zshrc

alias python="/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python"
alias python3="/usr/local/Cellar/[email protected]/3.9.1_3/bin/python3"

然后用easy_install 给系统python安装pip ,不要通过homebrew,当然homebrew的python还是装了的,会自动安装pip。

sudo easy_install pip  
python -m pip install --user --upgrade pip

累觉不爱。反正我哪个版本都装上,管它python python3, pip还是pip3 ,homebrew还是 easy_install。

你可能感兴趣的:(MacOS 底下Python 混乱)