美文网首页
mac安装python3和homebrew

mac安装python3和homebrew

作者: 假如如假 | 来源:发表于2021-01-20 11:10 被阅读0次

    一、Mac安装Homebrew

    (已经安装过brew的请自行备份后,再运行下面的安装脚本!!!!!)

    安装脚本:

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

    卸载脚本:

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"

    常见问题参照https://zhuanlan.zhihu.com/p/111014448解决。

    二、替换Python2

    这里有个基础知识要记录一下,就是不同方法安装python的路径是不一样的,如下所示:

    环境配置:

    1 控制台输入:vi ~/.bash_profile 并输入如下代码:

    # Setting PATH for Python 2.7

    export    PATH="/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"

    # Setting PATH for Python 3.7.3

     export    PATH="/usr/local/Cellar/python/3.7.3/bin:${PATH}"

    :wq(退出)

    source ~/.bash_profile

    2 控制台输入:vi ~/.bashrc 完成别名的命名

    alias python2='/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7'

    alias python3='/usr/local/Cellar/python/3.7.3/bin/python3.7'

    alias python=python3//这里是切换的设置

    :wq(退出)

    source ~/.bashrc

    3 上述步骤的修改,虽然保存了,但是系统还没让其生效,所以我们需要source一下。

    控制台输入:source ~/.bash_profile然后按回车键

    控制台输入:source ~/.bashrc然后按回车键

    最后关闭终端,重新打开,即生效。

    作者:静默的小猫

    链接:https://www.jianshu.com/p/32dabcc20816

    来源:简书

    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

    转自:https://www.jianshu.com/p/6028cd9b240c

    https://www.jianshu.com/p/32dabcc20816

    相关文章

      网友评论

          本文标题:mac安装python3和homebrew

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