diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 23:15:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 23:15:09 -0400 |
commit | 55bf7ed3862f30f9599dc2dc601bc67db68e4385 (patch) | |
tree | 65cc79a917f92426cb1c850b139b5bcca9e0e2d1 /doc/install.rst | |
parent | 7d34643ed6de4399b67c5b6a6ff4bb7f44a64bbb (diff) | |
download | python-coveragepy-55bf7ed3862f30f9599dc2dc601bc67db68e4385.tar.gz |
Start of a standalone installation page.
Diffstat (limited to 'doc/install.rst')
-rw-r--r-- | doc/install.rst | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/install.rst b/doc/install.rst new file mode 100644 index 0000000..fe85d37 --- /dev/null +++ b/doc/install.rst @@ -0,0 +1,32 @@ +.. _install: + +============ +Installation +============ + +:history: 20100725T225600, new for 3.4. + +.. _coverage_pypi: http://pypi.python.org/pypi/coverage + +Installing coverage.py is simple: + +#. Download the appropriate kit from the + `coverage page on the Python Package Index`__. + +#. + +.. __: coverage_pypi_ + + +You may need to install the python-dev support files, for example with "apt-get +install python-dev". + + +Installing on Windows +--------------------- + +For Windows, kits are provided on the `PyPI page`__ for each version of Python and architecture +combination. These kits require that setuptools be installed as a pre-requisite, +but otherwise are self-contained. + +.. __: coverage_pypi_ |