如何在mac上安装unicodecsv 0.12.0

时间:2015-04-26 01:05:32

标签: python

以下命令无效:

sudo pip install unicodecsv

我得到了

raise DistributionNotFound(req)  # XXX put more info here
pkg_resources.DistributionNotFound: pip==1.4.1

sudo apt-get install python-pip

我得到了

sudo: apt-get: command not found

我从here下载了该软件包。如何从下载安装?

1 个答案:

答案 0 :(得分:1)

安装包所需的特定pip版本:

sudo easy_install pip==1.4.1

然后重复pip install命令:

sudo pip install unicodecsv