xLaszlo
xLaszlo
Do you need to install the packages again? I can't import numpy if I create a py3 notebook.
This should be added to `pcconfig.py`. ``` config = pc.Config( ..., frontend_packages=['@clerk/clerk-react'], ) ``` Also a small typo here: `pc,text("Signed In")`. It should be a `.`.
I found this issue which might be related: https://github.com/scipopt/scip/issues/85
I am using `PySCIPOpt==5.0.0` (the latest) Shall I try downgrading? I don't know which version I used previously but it might have been the previous one. One other new thing...
I am using automatic installation, just `pip install PySCIPOpt` or `pip install cvxpy[SCIP]`
I am also getting these errors: ``` [solve.c:3916] ERROR: (node 4) unresolved numerical troubles in LP 37 cannot be dealt with [solve.c:4197] ERROR: Error in function call [solve.c:4993] ERROR: Error...
I replicated the error in a minimal setting: ``` Python 3.11.4 ``` env: ``` python -m venv myenv source myenv/bin/activate pip install cvxpy[SCIP] ``` resulting in: ``` clarabel==0.7.1 cvxpy==1.4.2 ecos==2.0.13...
This is the complete log with `problem.solve(solver=cp.SCIP, verbose=True, scip_params={'numerics/feastol': 1e-9, 'display/verblevel': 5})` ``` =============================================================================== CVXPY v1.4.2 =============================================================================== (CVXPY) Mar 29 01:14:03 PM: Your problem has 2180 variables, 932 constraints, and...
No worries. Thanks for taking a look at this. I must admit this is beyond my knowledge, so I don't think I can be much help. The only reason I...
Thanks for the update. So what's your recommended solution to install GMP? `sudo apt-get install libgmp3-dev` ? How do I check that SCIP is using it correctly when I am...