hello, I don't use python much, but I am trying to follow along with an api tutorial, and I needed to import requests. The code was ```import requests
import json
requests.get(
'http:///api.stackexchange.com/2.3/questions?order=desc&sort=activity&site=stackoverflow')
print(response). I got this error: Traceback (most recent call last):
File ".\apipractice.py", line 1, in <module>
import requests
File "C:\Users\user\OneDrive\Desktop\pythonpractice\myenv\lib\site-packages\requests_init_.py", line 43, in <module>
import urllib3
File "C:\Users\user\OneDrive\Desktop\pythonpractice\myenv\lib\site-packages\urllib3_init_.py", line 42, in <module>
"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently "
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.1.0j 20 Nov 2018'. See: https://github.com/urllib3/urllib3/issues/2168``` How am I getting this error? I have followed along with a few Python tutorials, did they have me install an old thing called OpenSSL which is impeding with the library/libraries I needed to download? I only got this computer a year or 1.5 years ago, I don't know why I have something from 2018. Can anyone help me make sense of this? It's always been my nightmare that I'd do too many tutorials, mess up my pc's configuration/s with stuff, and never be able to fix it ๐ฆ