Skip to content

Instantly share code, notes, and snippets.

View shrinath-shenoy's full-sized avatar

Shrinath Shenoy shrinath-shenoy

  • Cisco
  • Bangalore
View GitHub Profile
@sunliwen
sunliwen / mac_openssl_include.sh
Last active March 8, 2021 23:22
On Mac - fatal error: 'openssl/aes.h' file not found #include <openssl/aes.h>
# Install pip install cryptography, path issue with openssl/aes.h will occur. The reason is Apple deprecated openssl and the compiler can't find the one installed by homebrew.
# So the following line will help.
env LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography