view INSTALL.txt @ 423:fe75803a4a5e

describe Distribute requirement
author catherine.devlin@gmail.com
date Wed, 20 Jul 2011 23:21:29 -0400
parents 6ffa49335dcb
children 47301bf13ec3
line wrap: on
line source

cmd2 can be installed from PyPI by ``easy_install`` or ``pip``.

Development trunk can be downloaded with mercurial::

  hg clone http://hg.assembla.com/python-cmd2

To install from the trunk, ``cd python-cmd2`` and run ``python setup.py install`` or ``python setup.py develop`` (requires setuptools).  (Use ``root`` account, or ``sudo``, on *nix.)

Python 3
--------

The Python 3 egg downloaded from PyPI or installed by ``pip`` or ``easy_install`` is ready to go.

To install from source for Python 3, the 2to3 transformations must be applied to ``cmd2.py``.
The best way to do this is to install ``distribute`` on Python 3 before installing
``cmd1``::

  curl -O http://python-distribute.org/distribute_setup.py
  sudo python3 distribute_setup.py

  sudo python3 setup.py install