python - How do I install unicodecsv 0.12.0 on a mac -


the following commands not working:

sudo pip install unicodecsv 

i get

raise distributionnotfound(req)  # xxx put more info here pkg_resources.distributionnotfound: pip==1.4.1 

with

sudo apt-get install python-pip 

i get

sudo: apt-get: command not found 

i downloaded package here. how install download?

install specific pip version required package:

sudo easy-install pip==1.4.1 

and repeat pip install command:

sudo pip install unicodecsv 

Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

python - Exception while importing pymorphy2 -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -