DOCS: add C++ compiler installation on RHEL required for bundled 0mq

This commit is contained in:
Denys Havrysh 2017-01-17 15:02:31 +02:00
parent aedfbb7a43
commit 4620dc4afa
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: