diff options
-rw-r--r-- | INSTALL.txt | 23 | ||||
-rwxr-xr-x | README.rst | 2 | ||||
-rwxr-xr-x | setup.py | 3 |
3 files changed, 1 insertions, 27 deletions
diff --git a/INSTALL.txt b/INSTALL.txt deleted file mode 100644 index 76e138e5..00000000 --- a/INSTALL.txt +++ /dev/null @@ -1,23 +0,0 @@ -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 - -2to3 won't run if there's a ``build`` directory that's newer than your source code. Deleting the ``cmd2/build`` directory before running setup.py ensures that this won't be a problem. @@ -80,7 +80,7 @@ Instructions for implementing each feature follow. See Python standard library's `optparse` documentation: http://docs.python.org/lib/optparse-defining-options.html
-cmd2 can be installed with `easy_install cmd2`
+cmd2 can be installed from a Linux distribution or using `pip install cmd2`
Cheese Shop page: http://pypi.python.org/pypi/cmd2
@@ -41,9 +41,6 @@ Drop-in replacement adds several features for command-prompt tools: Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. -Running `2to3 <http://docs.python.org/library/2to3.html>` against ``cmd2.py`` -generates working, Python3-based code. - See docs at http://packages.python.org/cmd2/ """, |