diff options
author | iluxame <none@none> | 2016-02-25 15:03:42 +0200 |
---|---|---|
committer | iluxame <none@none> | 2016-02-25 15:03:42 +0200 |
commit | 0060bc4e469205a0e392165c2455271bfada08ae (patch) | |
tree | 3a343050a6c379e212fcd8a6757ceaabd35a6b80 | |
parent | babe79f03ea50e26accc397480e1dee2ea53152e (diff) | |
download | python-coveragepy-git-0060bc4e469205a0e392165c2455271bfada08ae.tar.gz |
Fixing CTracer installation documentation
-rw-r--r-- | doc/install.rst | 14 |
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 |