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
- Printing all even or odd numbers between a maximum and minimum value using python
- How to change project name on Django
- How to upload images and videos from the same field to Cloudinary on Django Framework
- How to add clipboard functionality to Django CkEditor Code Snippets
- flask error: flask.cli.NoAppException: Could not import "app name".
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.