Edgewall Software

Changes between Version 8 and Version 9 of setuptools


Ignore:
Timestamp:
Nov 15, 2014, 5:32:00 PM (9 years ago)
Author:
Christian Boos
Comment:

add link to PyPi installation instructions for setuptools and remove link to Python's trunk/setuptools as it contains the old 0.7a1 version

Legend:

Unmodified
Added
Removed
Modified
  • setuptools

    v8 v9  
    1212}}}
    1313
    14 Setuptools can be installed using bootstrap script from PEAK:
     14Setuptools can be installed using bootstrap script from PyPi ([https://pypi.python.org/pypi/setuptools#installation-instructions installation instructions]):
    1515{{{#!sh
    16 $ wget http://peak.telecommunity.com/dist/ez_setup.py
    17 $ python ez_setup.py
    18 $ rm ez_setup.py
     16$ wget https://bootstrap.pypa.io/ez_setup.py -O - | python
    1917}}}
    2018
    21 Aternatively, it can be obtained from the Python repository:
    22 {{{#!sh
    23 $ svn co http://svn.python.org/projects/sandbox/trunk/setuptools
    24 $ cd setuptools
    25 $ python setup.py install
    26 }}}
    2719Notes:
    2820 - if you're using svn 1.6.x and setuptools prior to **0.6c10**, be sure to apply the latest patch in setuptools-issue:64.