美文网首页
Mac 如何让python默认运行python3.8

Mac 如何让python默认运行python3.8

作者: 项啊丑 | 来源:发表于2020-03-23 21:34 被阅读0次

    Mac是自带python的,但是默认运行的是2.7

    那么如何默认运行3.8呢

    1.打开终端,运行该命令:open ~/.bash_profile

    2.写入python外部变量环境(你python版本是多少就写多少,我的是3.8):export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/3.8/bin

    3.最重要的一步,重命名python:alias python="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8"

    4.关闭文件后,在终端调用: source ~/.bash_profile

    5.在终端调用 python,查看是否修改成功

    相关文章

      网友评论

          本文标题:Mac 如何让python默认运行python3.8

          本文链接:https://www.haomeiwen.com/subject/tqpgyhtx.html