summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <nedbat@gmail.com>2016-02-25 08:48:42 -0500
committerNed Batchelder <nedbat@gmail.com>2016-02-25 08:48:42 -0500
commit32a6d3d76a314d33695fa1210b28faeb737d0c5e (patch)
treea50a26735b8f9936623c7c558efe9fda2ffd2e9e
parent2c60d618ccc611e0a901fd5825a4b5f8f8cc9042 (diff)
parent0060bc4e469205a0e392165c2455271bfada08ae (diff)
downloadpython-coveragepy-git-32a6d3d76a314d33695fa1210b28faeb737d0c5e.tar.gz
Merged in iluxame/coverage.py (pull request #79)
Fixing CTracer installation documentation
-rw-r--r--doc/install.rst14
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/install.rst b/doc/install.rst
index 16d44478..ab7673d9 100644
--- a/doc/install.rst
+++ b/doc/install.rst
@@ -57,18 +57,20 @@ The alternate old-school technique is:
.. __: coverage_pypi_
-Installing from source
+Installing dependencies for CTracer (a C extension for speed).
----------------------
-Coverage.py includes a C extension for speed. If you are installing from
-source, you may need to install the python-dev support files, for example
-with::
+Coverage.py includes a C extension for speed. It is recommended to use this extension if you are working with multiprocessed/multithreaded Python applications.
+You may need to install the python-dev and gcc support files before installing coverage via pip,
+for example::
- $ sudo apt-get install python-dev
+ $ sudo apt-get install python-dev gcc
+ $ sudo yum install python-devel gcc
or for Python 3.x::
- $ sudo apt-get install python3-dev
+ $ sudo apt-get install python3-dev gcc
+ $ sudo yum install python3-devel gcc
Installing on Windows