2👍
Now, unfortunately, we can’t brew link --force openssl
. So you can also set environment variables like below:
export LD_LIBRARY_PATH=/usr/local/opt/openssl/lib:$LD_LIBRARY_PATH
export CPATH=/usr/local/opt/openssl/include:$LD_LIBRARY_PATH
And do pip install
.
- [Django]-HAProxy load balancer in front of Django instances
- [Django]-What is the package name for python3 mod_wsgi on Centos 7?
- [Django]-Django localization: labels don't get updated
- [Django]-Problems with Django template cache refresh
- [Django]-How to set minimum number of characters for user password in django-allauth
Source:stackexchange.com