Installation Guide
Installation troubles? Check the Common installation issues section below.
JuMP is a package for Julia. To use JuMP, first download and install Julia.
This version of JuMP is compatible with Julia 1.0 and later.
From Julia, JuMP is installed using the built-in package manager:
import Pkg
Pkg.add("JuMP")We recommend you create a Pkg environment for each project you use JuMP for, instead of adding lots of packages to the global environment. The Pkg manager documentation has more information on this topic.
Installing a solver
JuMP depends on solvers to solve optimization problems, and you will need to install one before you can solve problems with JuMP. The table below lists the currently available solvers.
Install a solver using the Julia package manager, replacing "Clp" by the Julia package name as appropriate.
import Pkg
Pkg.add("Clp")Once installed, you can use Clp as a solver with JuMP as follows, using set_optimizer_attributes to set solver-specific options:
using JuMP
using Clp
model = Model(Clp.Optimizer)
set_optimizer_attributes(model, "LogLevel" => 1, "PrimalTolerance" => 1e-7)Most packages follow the ModuleName.Optimizer naming convention, but exceptions may exist. See the README of the Julia package's Github repository for more details on how to use a particular solver, including any solver-specific options.
Supported solvers
Most solvers are not written in Julia, and some require commercial licenses to use, so installation is often more complex.
- If a solver has
Manualin theInstallationcolumn, the solver requires a manual installation step, such as downloading and installing a binary, or obtaining a commercial license. Consult the README of the relevant Julia package for more information. - If the solver has
Manualᴹin theInstallationcolumn, the solver requires an installation of MATLAB. - If the
Installationcolumn is missing an entry, installing the Julia package will download and install any relevant solver binaries automatically, and you shouldn't need to do anything other thanPkg.add.
Solvers with a missing entry in the Julia Package column are written in Julia. The link in the Solver column is the corresponding Julia package.
| Solver | Julia Package | Installation | License | Supports |
|---|---|---|---|---|
| Alpine.jl | Triad NS | (MI)NLP | ||
| Artelys Knitro | KNITRO.jl | Manual | Comm. | (MI)LP, (MI)SOCP, (MI)NLP |
| BARON | BARON.jl | Manual | Comm. | (MI)NLP |
| Bonmin | AmplNLWriter.jl | EPL | (MI)NLP | |
| Cbc | Cbc.jl | EPL | (MI)LP | |
| CDCS | CDCS.jl | Manualᴹ | GPL | LP, SOCP, SDP |
| CDD | CDDLib.jl | GPL | LP | |
| Clp | Clp.jl | EPL | LP | |
| COSMO.jl | Apache | LP, QP, SOCP, SDP | ||
| Couenne | AmplNLWriter.jl | EPL | (MI)NLP | |
| CPLEX | CPLEX.jl | Manual | Comm. | (MI)LP, (MI)SOCP |
| CSDP | CSDP.jl | EPL | LP, SDP | |
| EAGO.jl | MIT | NLP | ||
| ECOS | ECOS.jl | GPL | LP, SOCP | |
| FICO Xpress | Xpress.jl | Manual | Comm. | (MI)LP, (MI)SOCP |
| GLPK | GLPK.jl | GPL | (MI)LP | |
| Gurobi | Gurobi.jl | Manual | Comm. | (MI)LP, (MI)SOCP |
| HiGHS | HiGHS.jl | MIT | LP | |
| Hypatia.jl | MIT | LP, SOCP, SDP | ||
| Ipopt | Ipopt.jl | EPL | LP, QP, NLP | |
| Juniper.jl | MIT | (MI)SOCP, (MI)NLP | ||
| MOSEK | MosekTools.jl | Manual | Comm. | (MI)LP, (MI)SOCP, SDP |
| NLopt | NLopt.jl | GPL | LP, QP, NLP | |
| OSQP | OSQP.jl | Apache | LP, QP | |
| PATH | PATHSolver.jl | MIT | MCP | |
| Pavito.jl | MPL-2 | (MI)NLP | ||
| ProxSDP.jl | MIT | LP, SOCP, SDP | ||
| SCIP | SCIP.jl | ZIB | (MI)LP, (MI)NLP | |
| SCS | SCS.jl | MIT | LP, SOCP, SDP | |
| SDPA | SDPA.jl, SDPAFamily.jl | GPL | LP, SDP | |
| SDPNAL | SDPNAL.jl | Manualᴹ | CC BY-SA | LP, SDP |
| SDPT3 | SDPT3.jl | Manualᴹ | GPL | LP, SOCP, SDP |
| SeDuMi | SeDuMi.jl | Manualᴹ | GPL | LP, SOCP, SDP |
| Tulip.jl | MPL-2 | LP |
Where:
- LP = Linear programming
- QP = Quadratic programming
- SOCP = Second-order conic programming (including problems with convex quadratic constraints and/or objective)
- MCP = Mixed-complementarity programming
- NLP = Nonlinear programming
- SDP = Semidefinite programming
- (MI)XXX = Mixed-integer equivalent of problem type
XXX
Developed a solver or solver wrapper? This table is open for new contributions! Start by making a pull request to edit the installation.md file.
Developing a solver or solver wrapper? See Models and the MathOptInterface docs for more details on how JuMP interacts with solvers. Please get in touch via the Developer Chatroom with any questions about connecting new solvers with JuMP.
AMPL-based solvers
Use AmplNLWriter to access solvers that support the nl format.
Some solvers, such as Bonmin and Couenne can be installed via the Julia package manager. Others need to be manually installed.
Consult the AMPL documentation for a complete list of supported solvers.
GAMS-based solvers
Use GAMS.jl to access solvers available through GAMS. Such solvers include: AlphaECP, Antigone, BARON, CONOPT, Couenne, LocalSolver, PATHNLP, SHOT, SNOPT, SoPlex. See a complete list here.
GAMS.jl requires an installation of the commercial software GAMS for which a free community license exists.
NEOS-based solvers
Use NEOSServer.jl to access solvers available through the NEOS Server.
Previously supported solvers
The following solvers were compatible with JuMP up to release 0.18 but are not yet compatible with the latest version because they do not implement the new MathOptInterface API:
Please join the Developer Chatroom if you have interest in reviving a previously supported solver.
Common installation issues
When in doubt, run import Pkg; Pkg.update() to see if updating your packages fixes the issue. Remember you will need to exit Julia and start a new session for the changes to take effect.
Check the version of your packages
Each package is versioned with a three-part number of the form vX.Y.Z. You can check which versions you have installed with import Pkg; Pkg.status().
This should almost always be the most-recent release. You can check the releases of a package by going to the relevant Github page, and navigating to the "releases" page. For example, the list of JuMP releases is available at: https://github.com/jump-dev/JuMP.jl/releases.
If you post on the community forum, please include the output of Pkg.status()!
Unsatisfiable requirements detected
Did you get an error like Unsatisfiable requirements detected for package JuMP? The Pkg documentation has a section on how to understand and manage these conflicts.
Installing new packages can make JuMP downgrade to an earlier version
Another common complaint is that after adding a new package, code that previously worked no longer works.
This usually happens because the new package is not compatible with the latest version of JuMP. Therefore, the package manager rolls-back JuMP to an earlier version! Here's an example.
First, we add JuMP:
(jump_example) pkg> add JuMP
Resolving package versions...
Updating `~/jump_example/Project.toml`
[4076af6c] + JuMP v0.21.5
Updating `~/jump_example/Manifest.toml`
... lines omitted ...The + JuMP v0.21.5 line indicates that JuMP has been added at version 0.21.5. However, watch what happens when we add JuMPeR:
(jump_example) pkg> add JuMPeR
Resolving package versions...
Updating `~/jump_example/Project.toml`
[4076af6c] ↓ JuMP v0.21.5 ⇒ v0.18.6
[707a9f91] + JuMPeR v0.6.0
Updating `~/jump_example/Manifest.toml`
... lines omitted ...JuMPeR gets added at version 0.6.0 (+ JuMPeR v0.6.0), but JuMP gets downgraded from 0.21.5 to 0.18.6 (↓ JuMP v0.21.5 ⇒ v0.18.6)! The reason for this is that JuMPeR doesn't support a version of JuMP newer than 0.18.6.
Pay careful attention to the output of the package manager when adding new packages, especially when you see a package being downgraded!