Skip to content Skip to sidebar Skip to footer

Pip Install Request Runtimeerror: Maximum Recursion Depth Exceeded In Python 2.7

I am new to python and facing below issue. When I am trying to install request module by using command PIP install request, I got the error RuntimeError: maximum recursion depth ex

Solution 1:

This appears to be due to a bug in recent versions of setupfiles, upon which request depends. You can work around this by first installing version 0.0.14 of setupfiles with pip install setupfiles==0.0.14 before trying to install request.


Post a Comment for "Pip Install Request Runtimeerror: Maximum Recursion Depth Exceeded In Python 2.7"