mac 下安装pip

作者: Bytesking | 来源:发表于2017-08-31 10:26 被阅读0次

    pip是常用的Python包管理工具,类似于Java的maven。用python的同学,都离不开pip。 在新mac中想用home-brew安装pip时,遇到了一些小问题:

    bogon:~ yj$ brew install pip
    Error: No available formula with the name "pip"
    Homebrew provides pip via: `brew install python`. However you will then
    have two Pythons installed on your Mac, so alternatively you can install
    pip via the instructions at:
    
      https://pip.readthedocs.org/en/stable/installing/#install-pip
    

    由此可见,在home-brew中,pip的安装是跟python一起的。

    换种方式:

    bogon:~ yj$ sudo easy_install pip
    Password:
    Searching for pip
    Reading https://pypi.python.org/simple/pip/
    ...
    

    稍等片刻,pip就安装完毕。。。

    安装完成之后就可以安装工具了:

    pip install --upgrade lxml --user

    pip install --upgrade requests --user

    相关文章

      网友评论

        本文标题: mac 下安装pip

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