|
|
|
|
|
by MichaelStubbs
1085 days ago
|
|
If you do "pip list --outdated" then it should show you which packages you have installed and that are out of date. Look out specifically for the packages that are mentioned in this error message: requests, urllib3, chardet, charset_normalizer. You can then upgrade them by doing "pip install [package name here] --upgrade". |
|