mac 下安装pip
Posted bcombettter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac 下安装pip相关的知识,希望对你有一定的参考价值。
pip是常用的Python包管理工具,类似于Java的maven。用python的同学,都离不开pip。
在新mac中想用home-brew安装pip时,遇到了一些小问题:
bogon:~ wanglei$ 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
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
由此可见,在home-brew中,pip的安装是跟python一起的。
换种方式:
bogon:~ wanglei$ sudo easy_install pip
Password:
Searching for pip
Reading https://pypi.python.org/simple/pip/
...
- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
稍等片刻,pip就安装完毕。。。
以上是关于mac 下安装pip的主要内容,如果未能解决你的问题,请参考以下文章