美文网首页
python 更改默认版本(3.7)

python 更改默认版本(3.7)

作者: wangyongyue | 来源:发表于2019-02-21 11:03 被阅读3次

    终端打开.bash_profile文件
    open ~/.bash_profile

    修改.bash_profile文件内容
    PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
    export PATH

    添加别名
    alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"

    终端中重新读取.bash_profile文件
    source ~/.bash_profile

    相关文章

      网友评论

          本文标题:python 更改默认版本(3.7)

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