diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-01-21 09:20:54 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-01-21 22:20:54 +0800 |
commit | d0c69837d2ede877ca5a2e3b74f5b4c09073b503 (patch) | |
tree | cb56c355adc6eff6153a6b85bb8ed4e6bc29fe95 /docs | |
parent | 4e87cf4529ea374ddaf91152c89b409661086ddc (diff) | |
download | cryptography-d0c69837d2ede877ca5a2e3b74f5b4c09073b503.tar.gz cryptography-d0c69837d2ede877ca5a2e3b74f5b4c09073b503.tar.bz2 cryptography-d0c69837d2ede877ca5a2e3b74f5b4c09073b503.zip |
Point people to python3-dev if needed (#3359)
* Point people to python3-dev if needed
* oops, syntax fix
* Fedora/RHEL as well
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index 888b8bc4..2c24d35d 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -74,14 +74,16 @@ compiler, headers for Python (if you're not using ``pypy``), and headers for the OpenSSL and ``libffi`` libraries available on your system. For Debian and Ubuntu, the following command will ensure that the required -dependencies are installed: +dependencies are installed (replace ``python-dev`` with ``python3-dev`` if +you're using Python 3): .. 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: +required dependencies are installed (replace ``python-devel`` with +``python3-devel`` if you're using Python 3): .. code-block:: console |