I got this following error while running django project "urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.0.2u-fips 20 Dec 2019"
SOLUTION:
Downgrade urllib3 to 1.26.6
The urllib3 version 2.0 supports openssl 1.1.1+. But in my django project Installed version openssl is 1.0. To resolve this problem, we need to downgrade urllib3 to 1.26.16.
pip install urllib3==1.26.6
VIDEO GUIDE:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article