Usage

Installation

Follow these instructions to clone the EUVpy github repo setup a new Python virtual environment with the required dependencies.

  1. Clone the repo into the directory of your choosing

$ cd ~/code
$ git clone https://github.com/DanBrandt/EUVpy.git
  1. Ensure Fortran is installed and compile the codes needed to run the HEUVAC model.

$ sudo apt-get install gfortran
$ git submodule update --init --recursive --remote
$ ./install_heuvac.sh
  1. Setup a Python virtual environment to run the code.

$ python3 -m venv ~/python_venvs/euv_venv
  1. Activate virtual environment and install Python dependencies

$ source ~/python_venvs/euv_venv/bin/activate
(euv_venv) $ cd EUVpy
(euv_venv) $ pip install -r requirements.txt
  1. Install EUVpy

(euv_venv) $ pip install EUVpy