Installation

Installation:

It is important to note that the whole ecosystem has been tested using Julia v0.6.2 and hence we can cannot guarantee whether it will work with previous versions of Julia. Thus, it is important that Julia v0.6.2 is properly installed and available on your system. CPLEX must be available in the local machine and CPLEX.jl must be properly installed, otherwise the installation will fail. Once, Julia v0.6.2 and CPLEX.jl has been properly installed, the following instructions in a Julia terminal will install MSEA.jl and its dependencies on the local machine:

Pkg.clone("https://github.com/aritrasep/MSEA.jl")
Pkg.build("MSEA")

In case Pkg.build("MSEA") gives you an error on Linux, you may need to install the GMP library headers. For example, on Ubuntu/Debian and similar, give the following command from a terminal:

$ sudo apt-get install libgmp-dev

After that, restart the installation of the package with:

Pkg.build("MSEA")