美文网首页
随笔记-Python3重装

随笔记-Python3重装

作者: 书香依旧 | 来源:发表于2021-07-14 16:30 被阅读0次

    重新安装Python3

    一、卸载Python3:

    https://www.jianshu.com/p/e6f6cb821e3f

    1、删除框架

    $ sudo rm -rf       //Library/Frameworks/Python.framework/Versions/3.5
    

    2、删除应用目录

    $ sudo rm -rf      //"/Applications/Python 3.5"
    

    3、删除指向Python的链接

    $ cd /usr/local/bin/
    $ ls -l /usr/local/bin | grep  ///Library/Frameworks/Python.framework/Versions/3.5
    $ brew prune    //清除链接和目录
    

    清除后可再次查看链接,会发现链接已清除

    二、安装xcode

    1、到App Store里下载,然后执行:

    $ xcode-select--install
    
    三、安装homebrow

    http://www.cnblogs.com/1009-smile/p/5753828.html

    1、安装

    $ /usr/bin/ruby -e "
    

    $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)
    中间会按RETURN键,输入密码。等着就Ok了

    2、关于卸载

    $ cd `brew --prefix`
    
    $ rm -rf Cellar
    
    $ brew prune
    
    $ rm `git ls-files`
    
    $ rm -rf .git
    
    $ rm -rf ~/Library/Caches/Homebrew
    
    四、用homebrow安装Python3

    https://www.cnblogs.com/xu360/p/9000795.html
    1、先搜索

    $ brew search python3
    

    2、安装Python3

    $ brew install python3
    

    安装完成后,具体路径是:/usr/local/Cellar/python3/3.7.0,可以在finder中前往

    五、配置环境变量

    https://stringpiggy.hpd.io/mac-osx-python3-dual-install/#step1

    相关文章

      网友评论

          本文标题:随笔记-Python3重装

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