Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 597 Bytes

installation.md

File metadata and controls

21 lines (17 loc) · 597 Bytes

Installation

Installing Convex.jl is a one step process. Open up Julia and type:

using Pkg
Pkg.update()
Pkg.add("Convex")

This does not install any solvers. If you don't have a solver installed already, you will want to install a solver such as SCS by running:

Pkg.add("SCS")

To solve certain problems such as mixed integer programming problems you will need to install another solver as well, such as HiGHS.

If you wish to use other solvers, please read the section on Solvers.