赞
踩
mac上配置python环境变量
下列所有内容都在mac的终端上操作
执行命令:
which python3
以我这台电脑为例,路径为:/Library/Frameworks/Python.framework/Versions/3.10/bin/python3
用 vim 打开文件
vi ~/.bash_profile
在insert模式(按i)将python3 路径写入:
PATH="/Library/Frameworks/Python.framework/Versions/3.10/bin:${PATH}"
export PATH
alias python="/Library/Frameworks/Python.framework/Versions/3.10/bin/python3"
esc, 然后‘:’底线命令模式, 输入 ‘wq!’
在命令行输入:
source ~/.bash_profile
画重点来了:经过这几次操作,发现打开终端输入python,还是显示默认是python2.7。需要把 source ~/.bash_profile 这行命令添加到 ~/.zshrc 文件中即可
将source ~/.bash_profile 这行命令添加到 ~/.zshrc 文件方法:
vim ~/.zshrc
然后在文件中加入下列语句:
source ~/.bash_profile
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。