Vercel django error: ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with LibreSSL 2.8.3
I get the error below when i deploy my Django project on Vercel
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with LibreSSL 2.8.3
Admin
2023-10-15
The issue is that the version of the 'ssl' module that is currently installed in your environment on vercel is compiled with LibreSSL 2.8.3, which is not compatible with urllib3 v2.0.
To fix this install a lower version using
pip install urllib3==1.26.6
Similar Content
- How to add YouTube plugin to Django CkEditor
- How to convert an array of strings in double quotes to array of strings in single quotes in JavaScript
- How to setup and use Cockroachdb in Django projects
- How to deploy a django project with staticfiles on vercel
- Hosting PostgreSQL database on Supabase for free
Privacy Policy
By using our website,
you agree that devmaesters can store cookies on your device and disclose information in accordance with our privacy policy.