一、Mac中如何更换终端默认的python版本
1、打开终端输入下列代码,打开配置文件
open ~/.bash_profile
2.在打开的配置文件中输入(以下代码3.12替换为所下载的版本即可)
#下面是修改python版本的命令就是环境变量
export PYTHON_HOME=/Library/Frameworks/Python.framework/Versions/3.12
export PATH=$PYTHON_HOME/bin:${PATH}
alias python=$PYTHON_HOME/BIN/PYTHON3.12
alias pip=$PYTHON_HOME/bin/pip3.12
3.Command+s保存文件后关闭文件
4.回到终端窗口执行以下代码
source ~/.bash_profile
192:~ conding$ python
Python 3.12.3 (v3.12.3:f6650f9ad7, Apr 9 2024, 08:18:48) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.