1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00

Document openssl header workaround for El Capitan (thanks michal`)

This commit is contained in:
Julien Vehent
2016-01-23 10:07:04 -05:00
parent 0bd85bcf9d
commit 0494bc4191
2 changed files with 5 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ First install some libraries from your package manager:
brew install libffi libyaml
sudo easy_install pip
# note: on OSX El Capitan, Apple stopped shipping the OpenSSL headers
# the command below is a workaround to install the Cryptography package
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography
Then install `sops` from pip::
sudo pip install --upgrade sops

View File

@@ -3,3 +3,4 @@ boto3>=1.1.3
ruamel.yaml>=0.10.7
ordereddict>=1.1
simplejson>=3.8
futures>=2.2.0