Skip to content

Latest commit

 

History

History
56 lines (32 loc) · 1012 Bytes

installation.rst

File metadata and controls

56 lines (32 loc) · 1012 Bytes

Installation

The following instructions will allow you to install PyIRTAM.

Prerequisites

PyIRTAM uses the Python modules included in the list below. This module officially supports Python 3.9+.

  1. fortranformat
  2. matplotlib
  3. numpy

Installation Options

1. Clone the git repository

git clone https://github.com/victoriyaforsythe/PyIRTAM.git
  1. Install PyIRTAM: Change directories into the repository folder and build the project. There are a few ways you can do this:

    1. Install on the system (root privileges required):

      sudo pip install .
      
    2. Install at the user level:

      pip install --user .
      
    3. Install with the intent to change the code:

      pip install --user -e .
      

Optional Requirements

To run the test suite and build the documentation locally, you also need the following Python packages.

.. extras-require:: test
    :pyproject:

.. extras-require:: doc
    :pyproject: