python ssl module is not available

Solutions on MaxInterview for python ssl module is not available by the best coders in the world

showing results for - "python ssl module is not available"
Malena
16 Apr 2019
1#Reinstall openssl by:
2brew uninstall openssl
3brew install openssl
4
5#Do the following:
6
7echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
8export LDFLAGS="-L/usr/local/opt/openssl/lib"
9export CPPFLAGS="-I/usr/local/opt/openssl/include"
10