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?
I install
qpsolvers
usingpip install qpsolvers
. the link is here: https://pypi.org/project/qpsolvers/I run the test code to check it works:
it produces a result:
I also run the line of code in the question:
this also produces a result:
So it all seems fine. I am using
vscode
andwindows10
withpython3.9
.