当前位置:   article > 正文

mac 安装pip教程_no available formula with the name "pip

no available formula with the name "pip

pip是在python开发过程中必不可少的包管理工具,在Mac中,我们安装首先想到brew

brew install pip
  • 1

但这样安装会有问题:

Error: No available formula with the name "pip" 
pip is part of the python formula:
  brew install python
  • 1
  • 2
  • 3

或更详细一点,这样:

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
  • 1
  • 2
  • 3
  • 4
  • 5

所以用以下方法安装

sudo easy_install pip
  • 1

或者可以用另外两种方式:

  • 源代码安装

    $ wget http://pypi.python.org/packages/source/p/pip/pip-0.7.2.tar.gz (替换为最新的包)
    $ tar xzf pip-0.7.2.tar.gz
    $ cd pip-0.7.2
    $ python setup.py install
    
    • 1
    • 2
    • 3
    • 4
  • 脚本安装

    $ curl -0 https://raw.github.com/pypa/pip/master/contrib/get-pip.py
    $ sudo python get-pip.py
    
    • 1
    • 2

这三者都可以,比较常用第一种。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/295102
推荐阅读
相关标签
  

闽ICP备14008679号