diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-13 13:29:55 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-13 13:29:55 -0600 |
commit | c3aa3d7a783020cce621156e463fd1bed7da13dc (patch) | |
tree | de1a3855dfb47c5f898ebcc6fac77787e943cfc6 /docs | |
parent | de5a855ecd84d719b12cb374ff0caa70b75aa82f (diff) | |
parent | 4992384b9ebab1c06dd41423dadbb1f24625b019 (diff) | |
download | cryptography-c3aa3d7a783020cce621156e463fd1bed7da13dc.tar.gz cryptography-c3aa3d7a783020cce621156e463fd1bed7da13dc.tar.bz2 cryptography-c3aa3d7a783020cce621156e463fd1bed7da13dc.zip |
Merge pull request #607 from alex/docs-nits
A few style nits in the docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index 595ccc83..f9c3574d 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -26,8 +26,8 @@ Building cryptography on Linux ------------------------------ ``cryptography`` should build very easily on Linux provided you have a C -compiler, headers for Python (if you're not using `pypy`), and headers for the -OpenSSL and `libffi` libraries available on your system. +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 ~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -37,13 +37,13 @@ dependencies are installed: .. code-block:: console - sudo apt-get install build-essential libssl-dev libffi-dev python-dev + $ sudo apt-get install build-essential libssl-dev libffi-dev python-dev You should now be able to build and install cryptography with the usual .. code-block:: console - python setup.py install + $ pip install cryptography Using your own OpenSSL on Linux ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |