Skip to content

Installation

Before starting the setup, ensure you have conda installed.
Follow the links for corresponding installation guides.

  1. Download epic_setup.bat
  2. Install with the following command
    call epic_setup.bat
    

Setting up GeoEPIC manually

  1. Create a virtual environment in conda
    conda create --name epic_env python=3.11
    
  2. Activate the environment

    conda activate epic_env
    

  3. Install the GeoEPIC Toolkit
    There are two options for installing the GeoEPIC Toolkit:

    Option 1: Install Directly from GitHub

    pip install git+https://github.com/smarsGroup/geo_epic_win.git
    

    Option 2: Install locally This option is advisable only for developers.

    git clone https://github.com/smarsGroup/geo_epic_win.git
    
    cd geo_epic_win
    
    pip install .
    

Verify installation

conda activate epic_env
geo_epic init

All the commands and python API can be accessed via epic_env conda environment. Happy coding!