美文网首页
mac安装使用python3.x

mac安装使用python3.x

作者: Coding破耳 | 来源:发表于2020-02-13 15:57 被阅读0次

    系统是macOS x>10.9,系统自带的Python版本是2.7。
    下载安装Python 3.x的pkg文件后,双击安装。
    在终端输入python --version,发现返回的是2.7版;执行python3 --version 才是3.x版本。
    说明还需要配置环境变量,来替换mac自带的python版本。

    先通过 which python3 查看python3安装在了哪里,安装路径为:/Library/Frameworks/Python.framework/Versions/3.x

    配置环境变量:vim ~/.bash_profile
    在最后面一行加入:
    alias python="/Library/Frameworks/Python.framework/Versions/3.x"

    保存好后,执行 source ~/.bash_profile

    然后执行 python 就可调用python3了
    要调用python2.7,修改bash_profile,将3.x版本注释即可。

    同样点操作,用pip3将pip覆盖。(pip3为python3点配套操作)

    相关文章

      网友评论

          本文标题:mac安装使用python3.x

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