ChillFam / odysee_downloader

Automates file downloads from your subscribed channels
Apache License 2.0
0 stars 0 forks source link

RequestsDependencyWarning #1

Closed Alejoss closed 6 months ago

Alejoss commented 6 months ago

When running python3 odysee_channel_downloader.py:

RequestsDependencyWarning: urllib3 (2.0.7) or chardet (3.0.4) doesn't match a supported version!

Then after updating urllib3:

RequestsDependencyWarning: urllib3 (2.2.1) or chardet (3.0.4) doesn't match a supported version!

Alejoss commented 6 months ago

Maybe just add chardet to requirements.txt .

I ran pip install urllib3 chardet --upgrade

and it solved that error in particular.

ChillFam commented 6 months ago

Thanks Alejoss, glad you got it working. That seemed to be a problem with the requests library being outdated. It should also be fixed by: pip3 install --upgrade requests