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 setup environment variables for Django projects
- django.core.exceptions.ImproperlyConfigured: WSGI application 'project.wsgi.application' could not be loaded; Error importing module.
- Part 6: Building a User-Friendly Todo App with Flask - Step-by-Step Guide to Delete Todo and Category Items via DELETE Requests
- ckeditor.js error exportpdf-no-token-url in django
- How to upload images and videos from the same field to Cloudinary on Django Framework
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.