annotate INSTALL.txt @ 422:6ffa49335dcb

Python 3 installation instructions
author catherine.devlin@gmail.com
date Wed, 20 Jul 2011 21:23:53 -0400
parents
children fe75803a4a5e
rev   line source
422
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
1 cmd2 can be installed from PyPI by ``easy_install`` or ``pip``.
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
2
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
3 Development trunk can be downloaded with mercurial::
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
4
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
5 hg clone http://hg.assembla.com/python-cmd2
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
6
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
7 To install from the trunk, ``cd python-cmd2`` and run ``python setup.py install`` or ``python setup.py develop`` (requires setuptools).
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
8
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
9 Python 3
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
10 --------
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
11
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
12 The Python 3 egg downloaded from PyPI or installed by ``pip`` or ``easy_install`` is ready to go.
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
13
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
14 To install from source for Python 3::
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
15
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
16 2to3 -w cmd2.py
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
17 python3 setup.py install
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
18
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
19
6ffa49335dcb Python 3 installation instructions
catherine.devlin@gmail.com
parents:
diff changeset
20