Difference between revisions of "Setting up Python easy install for Cygwin"

From PeformIQ Upgrade
Jump to navigation Jump to search
(Created page with "See here - To get easy_install and pip running under cygwin first download [ez_setup.py] and run it with python: $ python ez_setup.py This should install setuptools a...")
 
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:




To get easy_install and pip running under cygwin first download [ez_setup.py] and run it with python:
To get easy_install and pip running under cygwin first download [[ez_setup.py]] and run it with python:


   $ python ez_setup.py
   $ python ez_setup.py
Line 15: Line 15:




 
[[Category:Python]]
=dateutil=
 
* http://stackoverflow.com/questions/11962714/installing-python-dateutil
 
To get only dateutil:
 
  $ pip install python-dateutil
 
or
 
  $ easy_install python-dateutil

Latest revision as of 13:55, 12 January 2014

See here -


To get easy_install and pip running under cygwin first download ez_setup.py and run it with python:

 $ python ez_setup.py


This should install setuptools and also create an easy_install script for your python version which can then be used to install pip:

 $ easy_install pip

This will install pip into your python site packages directory. You should then be able to use pip to install other Python packages.