Mac安装python 3.x并配置环境变量

1、首先安装python 3.x版本

资源:https://www.python.org/downloads/mac-osx/

2、用终端打开.bash_profile文件
open ~/.bash_profile 

3、配置Python环境

# 设置python环境
alias python="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8"
4、使文件生效
source ~/.bash_profile
5、查看是否配置成功,终端输入python -version
输入python -V 也可以查看python版本

在这里插入图片描述

你可能感兴趣的:(Python,python,mac)