mirror of https://github.com/kirsle/kirsle.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
364 B
364 B
Python on Mac OS X Tips
Installing Modules with pip
cryptography
Depends on libffi and openssl: brew install libffi openssl
Error: can't find openssl/aes.h
- Solution:
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography
- Found at: https://github.com/pyca/cryptography/issues/2350