首页 > 系统服务 > 详细

mac 下安装pip

时间:2017-09-01 14:57:13      阅读:309      评论:0      收藏:0      [点我收藏+]

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

原文:http://www.cnblogs.com/xingzc/p/7463182.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!