I am trying to run the code for the competition. I have run code with importing scipy and sklearn packages before and there were no isuees. When I run my code now i get the error:
RuntimeError: Scikit-learn array API support was enabled but scipy’s own support is not enabled. Please set the SCIPY_ARRAY_API=1 environment variable before importing sklearn or scipy. More details at: Support for the array API standard — SciPy v1.15.3 Manual
I have tried reading the link above and setting os.environ[‘SCIPY_ARRAY_API’] = ‘1’ before my packages. The error is not leaving. What should I do to solve this?