Skip to content

Latest commit

 

History

History
98 lines (61 loc) · 2.8 KB

File metadata and controls

98 lines (61 loc) · 2.8 KB

Linux Installation Guide

Quickstart

The following commands should be sufficient to get you started with installing and using IDAES. For more information on these steps, see below.

.. literalinclude:: install_templates/quickstart.txt
   :language: bash


Installing IDAES

To get IDAES fully set up on your machine, we'll go through the steps to get idaes-pse package installed as well as setting up the IDAES extensions, which includes some extra solvers and function libraries, the IDAES example files, and the IDAES tests.

Install Prerequisites

Install Miniconda

  1. Download Miniconda
  2. Open a terminal window & run the downloaded script.

Install Dependencies

  1. The IPOPT solver depends on the GNU FORTRAN, GOMP, Blas, and Lapack libraries. If these libraries are not already installed on your Linux system, you or your system administrator can use the sample commands below to install them. If you have a Linux distribution that is not listed, IPOPT should still work, but the commands to install the required libraries may differ. If these libraries are already installed, you can skip this and proceed with the next step.

    Note

    Depending on your distribution, you may need to prepend sudo to these commands or switch to the "root" user.

    Ubuntu 18.04 and 19.10 and distributions based on them

    sudo apt-get install libgfortran4 libgomp1 liblapack3 libblas3

    Ubuntu 20.04 and distributions based on it

    sudo apt-get install libgfortran5 libgomp1 liblapack3 libblas3

    Current RedHat based distributions, including CentOS

    yum install lapack blas libgfortran libgomp

Install IDAES-PSE

Install IDAES Extensions

Install IDAES Examples

Run IDAES Tests