You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.
There are some problems installing Calvin on the latest OS X El Capitan (version 10.11.1). The requirements for libffi and OpenSSL are not fulfilled by default. Apparently, Apple is dropping support for OpenSSL in El Capitan and moving to their own library. Thus, running pip install -e . according to the wiki install instructions will fail.
A simple fix is to first install Homebrew and install the missing dependancies. With this in place, to get libffi just run:
On 27 Jul 2017, at 10:54, Per Persson ***@***.***> wrote:
This is an issue on Ubuntu 16.04 LTS as well, installing libffi-dev and libssl-dev is a prerequisite.
apt-get install libffi-dev
apt-get install libssl-dev
There should probably be a "prerequisite" section in the wiki-installation page?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#13 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ALlyxOure2Y7LZ0SSS-aZuxa0PI3fPV6ks5sSFBGgaJpZM4GhrFh>.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are some problems installing Calvin on the latest OS X El Capitan (version 10.11.1). The requirements for
libffi
andOpenSSL
are not fulfilled by default. Apparently, Apple is dropping support for OpenSSL in El Capitan and moving to their own library. Thus, runningpip install -e .
according to the wiki install instructions will fail.A simple fix is to first install Homebrew and install the missing dependancies. With this in place, to get libffi just run:
brew install libffi
and, for OpenSSL,
brew install openssl
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography
The text was updated successfully, but these errors were encountered: