2020-12-21

不同的路径

Mac上自带python的安装路径:

Mac上自带python为2.X版本,该版本已停止更新。而用Homebrew下载新的版本后,bash打开依然是默认的2.X版本。

 

/System/Library/Frameworks/Python.framework/Versions

 

brew新安装的路径:

	
/usr/local/Cellar/python

路径的切换

vim  ~/.bash_profile打开外部环境变量&配置

	
export PATH=${PATH}:/usr/local/Cellar/python/3.7.x(你的版本)/bin

 

 重新命名python

alias python="/usr/local/Cellar/python/3.7.x/bin/python3.7"

4 让其修改生效

source ~/.bash_profile 让配置文件生效