美文网首页
Python 版本切换

Python 版本切换

作者: minif | 来源:发表于2021-07-27 23:10 被阅读0次

    背景:

    当前电脑是mac机器,默认已经安装python2.7,现在需要切换成python3;

    解决方法:

    终端命令Terminal:

    brew install python3
    备注:
    系统命令默认路径在/usr/bin,用户命令默认路径在/usr/local/bin(brew安装的命令默认在这个路径下)。

    修改profile文件

    open ~/.bash_profile
    此时会弹出.bash_profile文件,在最后面加入:
    alias python="/usr/local/bin/python3" 保存即可
    然后重启下配置文件:
    source ~/.bash_profile

    验证python版本

    python --version

    相关文章

      网友评论

          本文标题:Python 版本切换

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