Recursion
Sat 17 May 2025
import pyutil as pyu
pyu.get_local_pyinfo()
'conda env: ml311; pyv: 3.11.10 (main, Oct 3 2024, 07:29:13) [GCC 11.2.0]'
print(pyu.ps2("haystack-ai ollama-haystack python-dotenv"))
haystack-ai==2.8.0
ollama-haystack is not installed in the current environment.
python-dotenv==0.21.0
import sys
print(sys.getrecursionlimit())
2000
import sys
sys.setrecursionlimit(2000)
print(sys.getrecursionlimit())
2000
Score: 5
Category: sys