"maximum recursion depth exceeded" installing android tools with ubuntu make
Little Girl
littlergirl at gmail.com
Wed Oct 2 05:44:54 UTC 2024
Hey there,
Colin Law wrote:
>Following the instructions from https://wiki.ubuntu.com/ubuntu-make I
>installed ubuntu-make with snap.
>sudo snap install ubuntu-make --classic
>then ran
>umake android
>to install the developer tools. It said
>Downloading and installing requirements
>then after a long time it said
>ERROR: maximum recursion depth exceeded
>100%
>|#################################################################################################|
>ERROR: Package requirements can't be met: maximum recursion depth
>exceeded.
>
>It appears to be a problem with the python code but Google did not
>come up with anything specific to umake.
>
>Any suggestions gratefully received.
It sounds like stack overflow. Either the recursion call inside the
function exceeded its specified recursion depth or the normally-valid
recursion depth exceeded your limit. I'm betting on the former, but
to find out your recursion limit, run this little Python script:
import sys
print(sys.getrecursionlimit())
Either way, it sounds like it's time to fill out a bug report,
because something's probably wrong with the installation script.
That's understandable. Recursions are tricky, slippery little beasts
that can easily get away from you.
--
Little Girl
There is no spoon.
More information about the ubuntu-users
mailing list