mirror of
https://github.com/kirsle/kirsle.net
synced 2024-11-14 12:59:28 +00:00
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