I am trying to install qpsolvers using pip. The installation goes without errors, and the module imports properly afterwards.
However, qpsolvers has no available solvers for it to use :
import qpsolvers
print(qpsolvers.available_solvers)
returns []
.
Of course, trying to do anything results in an error:
SolverNotFound: solver 'quadprog' is not available
even on the exemple file for quadprog for instance.
I have checked the location of the package, and it looks like the solvers are there : solver files in the package's solvers folder
Uninstalling and reinstalling or trying older versions didn't work.
How can I fix this?