美文网首页
mac环境安装pip

mac环境安装pip

作者: Amy_LuLu__ | 来源:发表于2019-08-04 14:58 被阅读0次

    原文:
    作者:老黑大伟
    链接:https://www.jianshu.com/p/dd67e564927a

    pip是常用的python包管理工具,用python的同学,都离不开pip。

    第一种 在系统自带的python2.7的路径下

    1、pip是python的包管理工具,在Python2.7的安装包中,easy_install.py是默认安装的,而pip需要我们手动安装。
    打开终端:

    sudo easy_install pip
    
    

    第二种 在python3的路径下

    curl https://bootstrap.pypa.io/get-pip.py | python3
    
    
    image

    安装后

    查看版本

    pip --version
    
    
    image

    查看相应的包

    pip3 list
    
    
    image

    安装和更新pip

    pip install --upgrade pip
    
    
    image

    相关文章

      网友评论

          本文标题:mac环境安装pip

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