diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-15 10:25:33 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-15 10:25:33 -0600 |
commit | bcbc9b2851c2e5a6f47b5ee85cb356593393a2a0 (patch) | |
tree | 87a6b83863210f294649aee3ac646f40f256e3f5 /docs | |
parent | 386801f47e9a36660c7a5cfc5ac7a30aa69c9001 (diff) | |
parent | d9702f9f324cd7b51d50bfb85370d8cf1034f332 (diff) | |
download | cryptography-bcbc9b2851c2e5a6f47b5ee85cb356593393a2a0.tar.gz cryptography-bcbc9b2851c2e5a6f47b5ee85cb356593393a2a0.tar.bz2 cryptography-bcbc9b2851c2e5a6f47b5ee85cb356593393a2a0.zip |
Merge pull request #618 from Ayrx/rhel-install
Added rhel-specific installation instructions.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index f9c3574d..63555abc 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -29,16 +29,20 @@ Building cryptography on Linux compiler, headers for Python (if you're not using ``pypy``), and headers for the OpenSSL and ``libffi`` libraries available on your system. -Debian and Ubuntu systems -~~~~~~~~~~~~~~~~~~~~~~~~~ - -For Debian and Ubuntu, the following command line will ensure the required +For Debian and Ubuntu, the following command will ensure that the required dependencies are installed: .. code-block:: console $ sudo apt-get install build-essential libssl-dev libffi-dev python-dev +For Fedora and RHEL-derivatives, the following command will ensure that the +required dependencies are installed: + +.. code-block:: console + + $ sudo yum install gcc libffi-devel python-devel openssl-devel + You should now be able to build and install cryptography with the usual .. code-block:: console |