Mac安装Python3并配置
1.下载Python3并安装
Python官方网站 https://www.python.org/
2.获取Python3路径
打开终端,执行命令:which python3
即可得到Python3路径 /Library/Frameworks/Python.framework/Versions/3.10/bin/python3
3.修改Python3路径
打开终端
输入命令 touch .bash_profile 来创建文件
输入命令 open .bash_profile 打开文件并编辑
在打开的文件中写入:
PATH=”/Library/Frameworks/Python.framework/Versions/3.10/bin:${PATH}”
export PATH
alias python=”/Library/Frameworks/Python.framework/Versions/3.10/bin/python3″
关闭文件【注意上面路径换成自己的Python3路径】
在终端输入:source ~/.bash_profile 使环境变量生效
4.永久生效
打开终端
输入命令touch ~/.zshrc 新建zshrc文件
输入命令open ~/.zshrc 打开zshrc文件
在文件内写入
source ~/.bash_profile
command+S保存文件,关闭zshrc文件
重新打开终端,输入命令python,打开的为Python3
原创文章,作者:306829225,如若转载,请注明出处:https://blog.ytso.com/276264.html