mac 下安装pip

来源:互联网 发布:td先知者软件 编辑:程序博客网 时间:2024/05/18 01:19

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

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

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

换种方式:

bogon:~ wanglei$ sudo easy_install pipPassword:Searching for pipReading https://pypi.python.org/simple/pip/...

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

6 0
原创粉丝点击