Python 104 error, reset connection from user

I had this error while trying to make web requests for different hosts. After debugging the bit, I found a solution that updates [security] requests through pip.

+4
source share
1 answer

Run

sudo python3 -m pip install "requests[security]"

or

sudo python -m pip install "requests[security]"

to fix this problem.

+9
source

Source: https://habr.com/ru/post/1667666/


All Articles