Merge pull request #38774 from vutny/dev-test-docs

DOCS: add C++ compiler installation on RHEL required for bundled 0mq
This commit is contained in:
Mike Place 2017-01-17 08:20:59 -07:00 committed by GitHub
commit 96c9dc10f7
2 changed files with 4 additions and 4 deletions

View file

@ -90,14 +90,14 @@ the lines below, depending on the relevant Python version:
To be able to run integration tests which utilizes ZeroMQ transport, you also
need to install additional requirements for it. Make sure you have installed
the C compiler and development libraries and header files needed for your
the C/C++ compiler and development libraries and header files needed for your
Python version.
This is an example for RedHat-based operating systems:
.. code-block:: bash
yum install gcc python-devel
yum install gcc gcc-c++ python-devel
pip install -r requirements/zeromq.txt
On Debian, Ubuntu or their derivatives run the following commands:

View file

@ -44,14 +44,14 @@ depending on your relevant version of Python:
To be able to run integration tests which utilizes ZeroMQ transport, you also
need to install additional requirements for it. Make sure you have installed
the C compiler and development libraries and header files needed for your
the C/C++ compiler and development libraries and header files needed for your
Python version.
This is an example for RedHat-based operating systems:
.. code-block:: bash
yum install gcc python-devel
yum install gcc gcc-c++ python-devel
pip install -r requirements/zeromq.txt
On Debian, Ubuntu or their derivatives run the following commands: