美文网首页
Python基础(1) ——安装与配置

Python基础(1) ——安装与配置

作者: _羊羽_ | 来源:发表于2018-07-11 01:55 被阅读728次
    Python has been installed as
      /usr/local/bin/python3
    
    Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
    `python3`, `python3-config`, `pip3` etc., respectively, have been installed into
      /usr/local/opt/python/libexec/bin
    
    If you need Homebrew's Python 2.7 run
      brew install python@2
    
    Pip, setuptools, and wheel have been installed. To update them run
      pip3 install --upgrade pip setuptools wheel
    
    You can install Python packages with
      pip3 install <package>
    They will install into the site-package directory
      /usr/local/lib/python3.6/site-packages
    
    See: https://docs.brew.sh/Homebrew-and-Python
    ==> Summary
    🍺  /usr/local/Cellar/python/3.6.4_4: 4,615 files, 97.4MB
    

    相关文章

      网友评论

          本文标题:Python基础(1) ——安装与配置

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