Tweaking docs

This commit is contained in:
Maxime Beauchemin 2016-04-01 08:37:19 -07:00
parent 7b111b790e
commit 481d821721
1 changed files with 14 additions and 11 deletions

View File

@ -21,14 +21,22 @@ you encounter an error.
Here's how to install them:
For Debian and Ubuntu, the following command will ensure that the required
dependencies are installed:
``sudo apt-get install build-essential libssl-dev libffi-dev python-dev``
For **Debian** and **Ubuntu**, the following command will ensure that
the required dependencies are installed: ::
For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
``sudo yum install gcc libffi-devel python-devel openssl-devel``
sudo apt-get install build-essential libssl-dev libffi-dev python-dev
Windows isn't officially supported at this point, but if you want to
For **Fedora** and **RHEL-derivatives**, the following command will ensure
that the required dependencies are installed: ::
sudo yum install gcc libffi-devel python-devel openssl-devel
**OSX** ::
brew install pkg-config libffi openssl
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography
**Windows** isn't officially supported at this point, but if you want to
attempt it: ::
C:\> \path\to\vcvarsall.bat x86_amd64
@ -36,11 +44,6 @@ attempt it: ::
C:\> set INCLUDE=C:\OpenSSL-1.0.1f-64bit\include;%INCLUDE%
C:\> pip install cryptography
OSX ::
brew install pkg-config libffi openssl
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography
Caravel installation and initialization
---------------------------------------