Installation TestingΒΆ

Getting all the solver-to-Python hooks working correctly can be a sticking point. If you are having trouble with this (reports that PuLP can’t find the solver), open a Python prompt and type:

from minpower.tests import solvers
solvers.testall()

Do you see solved problem, status: Optimal after each of the solvers you installed?

Great! Check out the resources For Students or For Researchers.

Do you see failed for a solver you did install?

Try:

  1. Check that you set your solver-to-Python hooks correctly (for Linux, Mac, Win)
  2. Call the solvers from the command line. After following the solver-to-Python directions above CPLEX should be called by cplex, GLPK by glpsol, Gurobi by gurobi. If this doesn’t work check your Path variable and reopen the command prompt.
  3. If you are still having trouble, consider trying a different solver first.

Project Versions

Previous topic

Solver Choices

Next topic

For Students

This Page